微信小程序封装请求接口

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)
      }
    })
}
微信小程序封装请求接口

 

 

微信小程序封装请求接口

上一篇:小程序底部导航TabBar


下一篇:2019课设---基于微信小程序的食堂订餐送餐系统设计 【构思】(19)