Skip to content

Releases: zhengjunxin/wx-promise-request

支持自定并发数功能

20 May 02:35
Compare
Choose a tag to compare

默认并发数为 10,但支持自定义并发数

import {request, setConfig} from './wx-promise-request';

setConfig({
    concurrency: 5,
})
request({
  url: 'test.php',
})
.then(res => console.log(res))
.catch(error => console.log(error));

解决 wx.request 并发数问题;变更 API

19 May 07:36
Compare
Choose a tag to compare
  • 管理请求队列,解决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 方法

18 May 06:10
Compare
Choose a tag to compare

增加 setConfig 方法,允许配置 request 函数和 Promise 函数

setConfig({
  request: qcloud.request,
  Promise: Promise,
})