How to implement request request background Interface php by WeChat Mini Programs
In this article, the editor introduces in detail "how WeChat Mini Programs implements request request background interface php". The content is detailed, the steps are clear, and the details are handled properly. I hope this "how WeChat Mini Programs implements request request background interface php" article can help you solve your doubts. Let's follow the editor's ideas to learn new knowledge.
Detailed explanation of an example of WeChat Mini Programs request requesting background interface php
Backend php API: http://www.vueyun.com/good/info
If the data is not processed, it is returned directly, and then processed according to the return format.
Public function getGoodInfo (Request $request) {$goods_datas = $this- > Resource- > get (); return response ()-> json (['status' = >' success','code' = > 200 training messages'= > 'get success', 'data'= > $goods_datas]);}
OnLoad in Mini Program index.js file
OnLoad: function () {console.log ('onLoad') wx.request ({/ / online interface address if https test can use http interface url:' http://www.vueyun.com/good/info', data: {}, method: 'GET', header: {' content-type': 'application/json'} Success: function (res) {that.setData ({goodslist: res.data.data}) Console.log (res.data.data, 1111111);},)}
Wxml file
{{item.img_title}} ¥{{item.good_price}} read here, this article "how to implement the request request background interface php by WeChat Mini Programs" has been introduced. If you want to master the knowledge points of this article, you still need to practice and use it before you can understand it. If you want to know more related articles, welcome to follow the industry information channel.