微信小程序request请求后台接口php的实例详解

微信小程序request请求后台接口php的实例详解

后台php接口:

没有处理数据,直接返回了,具体再根据返回格式处理

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文件,

<view> <block wx:for="{{goodslist}}" wx:for-item="item" wx:for-index="idx" > <view bindtap="goodsTap" data-id="{{item.id}}"> <view> <image src="https://www.jb51.net/{{item.img_url}}"/> </view> <view>{{item.img_title}}</view> <view>¥ {{item.good_price}}</view> </view> </block> </view>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wyzfzf.html