# RequestTask

网络请求任务实例

# 方法

# RequestTask.abort()

中断该请求任务

# 示例代码

const requestTask = qa.request({
  url: 'test.php', //仅为示例,并非真实的接口地址
  data: {
    x: '',
    y: ''
  },
  header: {
    'content-type': 'application/json'
  },
  success(res) {
    console.log(res.data)
  }
})

requestTask.abort() // 取消请求任务
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

在线客服