Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to encapsulate request Interface in WeChat Mini Programs

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

The knowledge of this article "how to encapsulate request interface in WeChat Mini Programs" is not quite understood by most people, so the editor summarizes the following, detailed content, clear steps, and has a certain reference value. I hope you can get something after reading this article. Let's take a look at this "how to encapsulate request interface in WeChat Mini Programs" article.

The encapsulation example code of WeChat Mini Programs's request interface

Encapsulation of Mini Program request API (essentially a callback to the request callback function)

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)}})})}

Call method

Var common = require (".. /.. / common/common.js") common.getData (postUrl). Then (function (data) {this.setData ({/ /.... }); console.log (data);}). The above article is about "how to encapsulate the request interface in WeChat Mini Programs". I believe we all have some understanding. I hope the content shared by the editor will be helpful to you. If you want to know more about it, please follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report