仿axios封装微信( wx.request)请求
直接贴代码
export const url = '接口请求地址'
export function axiosAPI (url, data, type) {
return new Promise(function(resolve, reject) {
wx.request({
url: url,
data: data,
header: {
token: wx.getStorageSync('token')
},
method: type,
success: function (res) {
if (res.data.errorCode === 10004) {
// 根据约定处理(过期。。。)处理
} else {
resolve(res.data)
}
},
fail: function () {
reject('网络错误')
wx.showToast({
icon: 'none',
title: '网络错误'
})
}
})
})
}
// 登陆
export const wechatAuth = (data) => {
// 路径,参数,请求方式
return axiosAPI(`${url}wechat/auth`, data, 'POST')
}
使用
// 引入接口
import { wechatAuth } from '../utils/api'
// 使用
let getData = {}
wechatAuth(getData).then(res => {
if (res.errorCode === 0) {
} else {}
})