wx-promise-request 是对微信小程序 wx.request 方法的异步封装。
解决问题
支持 Promise (使用 es6-promise 库)。
管理请求队列,解决 request 最大并发数超过 10 会报错的问题。
下载
然后拷贝 dist/index.js 文件到你的小程序项目中。
使用
request({
url: 'test.php',data: {
x: '',y: '',},header: {
'content-type': 'application/json',})
.then(res => console.log(res))
.catch(error => console.error(error))
url: 'test.php',data: {
x: '',y: '',},header: {
'content-type': 'application/json',})
.then(res => console.log(res))
.catch(error => console.error(error))
API
setConfig(object)
通过 setConfig 配置 wx-promise-request,如:使用 qcloud 提供的 request 方法;使用其他 Promise 库等等。
setConfig({
request: qcloud.request,Promise,})
request({
url: 'test.php',})
.then(res => console.log(res))
.catch(error => console.log(error));
request: qcloud.request,Promise,})
request({
url: 'test.php',})
.then(res => console.log(res))
.catch(error => console.log(error));
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
原文链接:https://www.f2er.com/weapp/39187.html