登录 注册
当前位置:主页 > 资源下载 > 50 > 微信小程序中,限制wx.request的并发请求数量

微信小程序中,限制wx.request的并发请求数量

  • 更新:2024-10-24 09:35:01
  • 大小:54KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

wx-queue-request 管理微信小程序 wx.request 方法的并发数,解决请求数大于 10 时,直接不请求的问题。如果需要 wx.request 方法支持 Promise,可以使用 wx-promise-request 库哦。 下载 由于小程序不支持 npm,所以直接右键保存 index.js 文件即可。 使用 在 app.js 引入并执行即可 import { queue } from './wx-queue-request' queue() // 因为请求队列被管理 // 即使并发请求数超过 10 也不会报错了 wx.request({url: 'test.php'}) wx.request({url: 'test.php'}) wx.request({url: 'test.php'}) wx.request({url: 'test.php'}) wx.request({url: 'test.php'}) wx.request({url: 'test.php'}) wx.request({url: 'test.php'}) wx.request({url: 'te