本文主要和大家介紹微信小程式request請求後台介面php的實例詳解的相關資料,希望透過本文能幫助到大家,需要的朋友可以參考下,希望能幫助到大家。
微信小程式request請求後台介面php的實例詳解
後台php介面:http://www.vueyun.com/good/info
沒有處理數據,直接返回了,具體再根據返回格式處理
public function getGoodInfo(Request $request) { $goods_datas = $this->Resource->get(); return response()->json(['status' => 'success','code' => 200,'message' => '获取成功','data'=>$goods_datas]); }
小程式index.js檔案中onLoad
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); }, }) },
wxml文件,
{{item.img_title}} ¥ {{item.good_price}}
相關推薦:
以上是微信小程式request請求後台介面php程式碼實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!