微信小程序 wx.request(object) API详解及实例代码

微信小程序 wx.request(object) API详解及实例代码

这里通过干活集中营的API接口真实请求下数据。如果提示URL 域名不合法,请在 mp 后台配置后重试修改asdebug.js两行代码即可可看下面图

定位到asdebug.js文件

微信小程序 wx.request(object) API详解及实例代码

打开搜索关键字URL 域名不合法关键字就是提示错误信息注释两行代码

微信小程序 wx.request(object) API详解及实例代码

微信小程序 wx.request(object) API详解及实例代码

主要方法:

微信小程序 wx.request(object) API详解及实例代码

wxml

<block wx:for-items="{{result}}"> <view></view> <!--index默认为下标,item为每项--> <text>第{{index}}条数据 {{item.desc}}</text> <text>地址{{item.url}}</text> </block>

js

Page({ data:{ // text:"这是一个页面" result: [] }, onLoad:function() { var that = this; wx.request({ url: 'http://gank.io/api/data/Android/30/1', method: 'GET', success:function(res) { that.setData({ result: res.data.results }) } }) }, listenerButton:function() { } })

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

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