码迷,mamicode.com
首页 > 微信 > 详细

微信小程序封装请求接口

时间:2019-09-07 01:34:29      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:type   cti   域名   fail   style   function   http   request   ESS   

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)
      }
    })
}
技术图片

 

 

微信小程序封装请求接口

标签:type   cti   域名   fail   style   function   http   request   ESS   

原文地址:https://www.cnblogs.com/caoyuna/p/11478786.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!