UNPKG
uni-http
Version:
latest (0.7.9)
0.7.9
0.7.8
0.7.7
0.7.6
0.7.5
0.7.4
0.7.3
0.7.2
0.7.1
0.7.0
0.6.0
0.5.0
0.4.1
0.4.0
0.3.1
0.3.0
0.2.2
0.2.1
0.2.0
0.1.2
0.1.1
0.1.0
在uniapp中发送请求和上传文件的api进行了封装
github.com/januwA/uni-http
januwA/uni-http
uni-http
/
src
/
abort-controller.ts
16 lines
(13 loc)
•
268 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
{ Completer } from
"ajanuw-completer"
;
/** * 中断请求控制器 */
export
class
UniAbortController
{ completer =
new
Completer
();
/** * 中断上传任务 */
abort
() {
if
(!
this
.completer.isCompleted)
this
.completer.
complete
(
true
); } }