最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

微信小程序中post方法与get方法的封装

来源:动视网 责编:小采 时间:2020-11-27 22:28:59
文档

微信小程序中post方法与get方法的封装

微信小程序中post方法与get方法的封装:微信小程序开发post方法与get方法的封装 第一步:在utils文件夹下创建httpUtil.js文件 第二步:创建函数httpPost方法代码如下: function Post(url, data, cb, isShow, showNetError, that, showLoading) { if (sho
推荐度:
导读微信小程序中post方法与get方法的封装:微信小程序开发post方法与get方法的封装 第一步:在utils文件夹下创建httpUtil.js文件 第二步:创建函数httpPost方法代码如下: function Post(url, data, cb, isShow, showNetError, that, showLoading) { if (sho


微信小程序开发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);
}

如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望通过本文能帮助到大家,谢谢大家对本站的支持!

文档

微信小程序中post方法与get方法的封装

微信小程序中post方法与get方法的封装:微信小程序开发post方法与get方法的封装 第一步:在utils文件夹下创建httpUtil.js文件 第二步:创建函数httpPost方法代码如下: function Post(url, data, cb, isShow, showNetError, that, showLoading) { if (sho
推荐度:
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top