微信小程序封装请求接口
Posted 前端开发
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序封装请求接口相关的知识,希望对你有一定的参考价值。
var rootDocment = \'https://123.com\';//你的域名
function postData(url, data, cb) {
wx.request({
url: rootDocment + url,
data: data,
method: \'post\',
success: function (res) {
return typeof cb == "function" && cb(res)
},
fail: function () {
return typeof cb == "function" && cb(false)
}
})
}
以上是关于微信小程序封装请求接口的主要内容,如果未能解决你的问题,请参考以下文章