时间:2021-05-18
wx-promise-request 是对微信小程序 wx.request 方法的异步封装。
解决问题
支持 Promise (使用 es6-promise 库)。
管理请求队列,解决 request 最大并发数超过 10 会报错的问题。
下载
npm install wx-promise-request
然后拷贝 dist/index.js 文件到你的小程序项目中。
使用
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))API
setConfig(object)
通过 setConfig 配置 wx-promise-request,如:使用 qcloud 提供的 request 方法;使用其他 Promise 库等等。
import {request, setConfig} from './wx-promise-request';import qcloud from './vendor/qcloud-weapp-client-sdk/index';import Promise from 'bluebird';setConfig({ request: qcloud.request, Promise,})request({ url: 'test.php',}).then(res => console.log(res)).catch(error => console.log(error));感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
微信小程序支付功能实现PHP实例详解前端代码:wx.request({url:'https:///wxpay/pay.php',//通知地址'openid'=>
本文实例讲述了微信小程序wx.request实现后台数据交互功能。分享给大家供大家参考,具体如下:记录微信小程序wx.request这个api在跟后台交互时遇上
微信小程序中有些Api是异步的,无法直接进行同步处理。例如:wx.request、wx.showToast、wx.showLoading等。如果需要同步处理,可
本文实例讲述了微信小程序设置全局请求URL及封装wx.request请求操作。分享给大家供大家参考,具体如下:app.js:App({//设置全局请求URLgl
微信小程序合法域名校验出错详解及解决办法看下出现错误:微信小程序开发,遇到这个问题怎么办?产生原因是因为发起了wx.request请求而请求的域名没有在微信公众