微信小程序设置全局请求URL 封装wx.request请求
Posted 柒月
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序设置全局请求URL 封装wx.request请求相关的知识,希望对你有一定的参考价值。
app.js:
App({ //设置全局请求URL globalData:{ URL: ‘https://www.oyhdo.com‘, }, /** * 封装wx.request请求 * method: 请求方式 * url: 请求地址 * data: 要传递的参数 * callback: 请求成功回调函数 * errFun: 请求失败回调函数 **/ wxRequest(method, url, data, callback, errFun) { wx.request({ url: url, method: method, data: data, header: { ‘content-type‘: method == ‘GET‘?‘application/json‘:‘application/x-www-form-urlencoded‘, ‘Accept‘: ‘application/json‘ }, dataType: ‘json‘, success: function (res) { callback(res.data); }, fail: function (err) { errFun(res); } }) } })
调用示例:
const app = getApp(); Page({ onLoad: function () { let url = app.globalData.URL + ‘/User/getUserinfo‘; let data = { uid: ‘1‘ }; app.wxRequest(‘POST‘, url, data, (res) => { console.log(res.data) }, (err) => { console.log(err.errMsg) }) } })
--
以上是关于微信小程序设置全局请求URL 封装wx.request请求的主要内容,如果未能解决你的问题,请参考以下文章