這篇文章主要介紹了微信小程式中post方法與get方法的封裝的相關資料,希望透過本文能幫助到大家,讓大家掌握如何封裝,需要的朋友可以參考下
微信小程式開發post方法與get方法的封裝
第一步:在utils資料夾下建立httpUtil.js檔案
第二步:建立函數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); }
以上就是本文的全部內容,希望對大家的學習有所幫助,更多相關內容請關注PHP中文網! 相關推薦:
#
以上是微信小程式中post方法與get方法的封裝的詳細內容。更多資訊請關注PHP中文網其他相關文章!