我是靠谱客的博主 冷静小刺猬,最近开发中收集的这篇文章主要介绍关于微信小程序 request接口的封装介绍,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

这篇文章主要介绍了微信小程序 request接口的封装实例代码的相关资料,需要的朋友可以参考下

微信小程序 request接口的封装实例代码

小程序request接口的封装(本质上是对request回调函数再次回调)

module.exports.getData = function (url) {
 var data = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
 var method = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'POST';
 var header = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : { 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8' };

 return new Promise(function (resolve, reject) {
 wx.request({
  url: url,
  data: data,
  method: method,
  header: { 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8' },
  success: function (res) {
  resolve(res)
  },
  fail: function (res) {
  reject(res)
  }
 })
 })
}
登录后复制

调用方法

var common = require("../../common/common.js")
common.getData(postUrl)
 .then(function(data){
  this.setData({
  //....
  });
  console.log(data);
 });
登录后复制

以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注PHP中文网!

相关推荐:

微信小程序网络请求wx.request的介绍

微信小程序中Video API的解析

以上就是关于微信小程序 request接口的封装介绍的详细内容,更多请关注靠谱客其它相关文章!

最后

以上就是冷静小刺猬为你收集整理的关于微信小程序 request接口的封装介绍的全部内容,希望文章能够帮你解决关于微信小程序 request接口的封装介绍所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(84)

评论列表共有 0 条评论

立即
投稿
返回
顶部