wendux / fly

:rocket: Supporting request forwarding and Promise based HTTP client for all JavaScript runtimes.
https://wendux.github.io/dist/#/language
MIT License
3.9k stars 639 forks source link

微信小程序-源码里面希望增加请求体示例返回 #186

Open Andyczc opened 5 years ago

Andyczc commented 5 years ago

image 包:flyio/dist/npm/wx 技术栈:mpvue + flyio 场景: 我在A页面发送了一个请求,这个请求耗时长,这时候我通过tabbar去了B页面, A页面的请求还在继续,这就导致A页面请求完成以后会继续往下执行代码,希望能增加request示例返回,这样在退出的时候能手动控制关掉请求 image

wendux commented 5 years ago

返回什么?

Andyczc commented 5 years ago

@wendux const requestTask = wx.request({ url: 'test.php', // 仅为示例,并非真实的接口地址 data: { x: '', y: '' }, header: { 'content-type': 'application/json' }, success(res) { console.log(res.data) } }) requestTask.abort() // 取消请求任务

希望在创建fly示例的时候 返回微信小程序request 实例,方便自定义处理