This article mainly introduces to you the relevant information about the detailed example of the WeChat applet request request backend interface PHP. I hope this article can help you. Friends in need can refer to it. I hope it can help you.
WeChat applet request request backend interface php example detailed explanation
Backend php interface: http://www.vueyun.com/good/info
No data is processed, it is returned directly, and the specific processing will be based on the return format
public function getGoodInfo(Request $request) { $goods_datas = $this->Resource->get(); return response()->json(['status' => 'success','code' => 200,'message' => '获取成功','data'=>$goods_datas]); }
onLoad
# in the applet index.js file
##
onLoad: function () { console.log('onLoad') wx.request({ //上线接口地址要是https测试可以使用http接口方式 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); }, }) },
<view class="goods-container"> <block wx:for="{{goodslist}}" wx:for-item="item" wx:for-index="idx" > <view class="goods-box" bindtap="goodsTap" data-id="{{item.id}}"> <view class="img-box"> <image src="{{item.img_url}}" class="image"/> </view> <view class="goods-title">{{item.img_title}}</view> <view class="goods-price">¥ {{item.good_price}}</view> </view> </block> </view>
WeChat applet call Introduction to the methods of the backend interface
Writing the backend interface in PHP
Some problems with the PHP backend interface
The above is the detailed content of WeChat applet request request background interface php code example. For more information, please follow other related articles on the PHP Chinese website!