RequestTask.abort
解释:中断请求任务。
方法参数
无
示例
扫码体验
请使用百度APP扫码
图片示例
代码示例
- 在 js 文件中
Page({
data: { },
request() {
const requestTask = swan.request({
url: 'https://sfc.baidu.com/shopping/nianhuo/bimai',
header: {
'content-type': 'application/json'
},
method: 'POST',
dataType: 'json',
responseType: 'text',
success: res => {
swan.showToast({
title: '已请求',
icon: 'none'
});
console.log(res.data);
this.setData('disabled', false)
},
fail: err => {
console.log('错误码:' + err.errCode);
console.log('错误信息:' + err.errMsg);
}
})
this.requestTask = requestTask;
},
abortRequest() {
this.requestTask.abort();
swan.showToast({
title: '已断掉',
icon: 'none'
});
}
});