国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

微信小程序中post方法與get方法的封裝

2019-11-19 15:18:20
字體:
供稿:網(wǎng)友

微信小程序開發(fā)post方法與get方法的封裝

第一步:在utils文件夾下創(chuàng)建httpUtil.js文件

第二步:創(chuàng)建函數(shù)httpPost方法代碼如下:

function Post(url, data, cb, isShow, showNetError, that, showLoading) { if (showLoading == true || showLoading == undefined){  wx.showNavigationBarLoading();  wx.showLoading({   title: '加載中...',  }) }  var basicData = {  vloginPwd: api.vloginPwd,  vtoken: api.vtoken } if (!isEmpty(data)) {  for (var key in data) {   try {    basicData[key] = data[key];   } catch (e) { }  } } wx.request({  url: url,  header: { 'content-type': 'application/x-www-form-urlencoded' },  method: 'POST',  data: basicData,  success: (res) => {      if (res.data.state == 200) {    typeof cb == "function" && cb(res.data, "");   } else {    if (isShow == true) {     wx.showModal({      title: '提示',      content: res.data.msg,      showCancel: false           })    }   }  },  fail: (err) => {   if (showNetError) {    that.setData({     errorDisplay:'',     containHidden:true    })   }     },  complete: (res) => {      setTimeout(function () {    wx.hideNavigationBarLoading();    wx.hideLoading();   }, 100)    } });};

第三步,在module里添加:

module.exports = { httpGet: Get, httpPost: Post };

第四步,引入

var httpUtil = require('../../utils/HttpHelper.js')

第五步,如何使用

onload:function(option){  var that = this;  httpUtil.httpPost(api.getListUrl, jsonData, function (res) {   wx.showModal({    title: '提示',    content: res.msg,    showCancel: false,    confirmText:"查看",    success: function (res) {     console.log("res.data===", res.data);     if (res.confirm) {      that.toDetail(res.data);     }    }   })  }, true, true, this);}

如有疑問請(qǐng)留言或者到本站社區(qū)交流討論,感謝閱讀,希望通過本文能幫助到大家,謝謝大家對(duì)本站的支持!

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 任丘市| 长岛县| 武山县| 济宁市| 和平区| 衡阳县| 黑龙江省| 吉安县| 同德县| 酒泉市| 巫山县| 东至县| 台东市| 中牟县| 兴文县| 阳朔县| 醴陵市| 北流市| 福鼎市| 林口县| 彝良县| 双牌县| 无为县| 江口县| 任丘市| 长子县| 益阳市| 砚山县| 万山特区| 万荣县| 驻马店市| 济阳县| 新巴尔虎右旗| 沛县| 连云港市| 图们市| 屏东市| 尚义县| 宜兴市| 叙永县| 镇康县|