2 回复
function request(url, data, method, callback) {
if (load == 1) {
wx.showLoading({
mask: true,
title: ‘加载中’
})
}
wx.request({
url: url,
data: data,
header: {
“content-type”: “application/x-www-form-urlencoded;charset=utf-8”
},
method: method,
success: function (res) {
callback(res)
},
fail: function (res) {
wx.showToast({
title: “网络连接超时”,
icon: ‘none’,
duration: 3000,
})
}
})
}