更新记录
0.0.1(2024-05-14)
下载此版本
对uni.request二次简单封装,使用了uni.addInterceptor拦截器改造为promise结构
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
app-vue |
× |
√ |
× |
× |
× |
× |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
× |
× |
× |
× |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
× |
× |
× |
× |
× |
× |
× |
× |
× |
使用方式
修改
const BASEURL = ''
const SUCCESSCODE = 200
const SUCCESSDATA = 'data'
挂载在全局
VUE2:
Vue.prototype.$request = Request
使用
this.$request({
extra:{
hideShowLoading:true
},
url: 'https://api.weixin.qq.com/cgi-bin/token',
data
}).then( resp => {
getApp().globalData.access_token = resp
})
//其中extra为自定义的选项,extra.hideShowLoading判断是否显示uni.showLoading