Releases: zhengjunxin/wx-promise-request
Releases · zhengjunxin/wx-promise-request
支持自定并发数功能
解决 wx.request 并发数问题;变更 API
- 管理请求队列,解决
wx.request
最大并发数超过 10 会报错的问题。 - API 变更为与小程序原生
wx.request
一致
import {request} from './wx-promise-request';
request({
url: 'test.php',
data: {
x: '',
y: '',
},
header: {
'content-type': 'application/json',
},
})
.then(res => console.log(res))
.catch(error => console.error(error))
增加 setConfig 方法
增加 setConfig 方法,允许配置 request 函数和 Promise 函数
setConfig({
request: qcloud.request,
Promise: Promise,
})