ホームページ > 記事 > WeChat アプレット > ミニ プログラムは post および get カプセル化を実装します。
この記事では、WeChat アプレットの post メソッドと get メソッドのカプセル化に関する関連情報を主に紹介します。カプセル化方法を習得できるように、必要な友人が参考になれば幸いです。あなた。
WeChat アプレット開発の post メソッドと get メソッドのカプセル化
ステップ 1: utils フォルダーに httpUtil.js ファイルを作成します
ステップ 2: 次のように関数 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) } }); };
3 番目のステップ、モジュールを追加します:
module.exports = { httpGet: Get, httpPost: Post };
4 番目のステップ、
var httpUtil = require('../../utils/HttpHelper.js')
を導入します 5 番目のステップ、使用方法
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); }
関連する推奨事項:
Jquery AJAX POST と GET の使用法の違いの簡単な分析
以上がミニ プログラムは post および get カプセル化を実装します。の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。