小程序如何请求php接口数据,微信小程序request请求后台接口php的实例详解

这篇文章主要介绍了微信小程序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}}

如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

你可能感兴趣的:(小程序如何请求php接口数据)