RequestTask.abort

解释:中断请求任务。

方法参数

示例

在开发者工具中预览效果

扫码体验

RequestTask.abort - 图1请使用百度APP扫码

图片示例

RequestTask.abort - 图2

RequestTask.abort - 图3

RequestTask.abort - 图4

代码示例

  • 在 js 文件中
  1. Page({
  2. data: { },
  3. request() {
  4. const requestTask = swan.request({
  5. url: 'https://sfc.baidu.com/shopping/nianhuo/bimai',
  6. header: {
  7. 'content-type': 'application/json'
  8. },
  9. method: 'POST',
  10. dataType: 'json',
  11. responseType: 'text',
  12. success: res => {
  13. swan.showToast({
  14. title: '已请求',
  15. icon: 'none'
  16. });
  17. console.log(res.data);
  18. this.setData('disabled', false)
  19. },
  20. fail: err => {
  21. console.log('错误码:' + err.errCode);
  22. console.log('错误信息:' + err.errMsg);
  23. }
  24. })
  25. this.requestTask = requestTask;
  26. },
  27. abortRequest() {
  28. this.requestTask.abort();
  29. swan.showToast({
  30. title: '已断掉',
  31. icon: 'none'
  32. });
  33. }
  34. });