微信小程序 wx.request(object) API详解及实例代码
顺子_RTFSC 人气:0这里通过干活集中营的API接口真实请求下数据。如果提示URL 域名不合法,请在 mp 后台配置后重试修改asdebug.js两行代码即可可看下面图
定位到asdebug.js文件
打开搜索关键字URL 域名不合法关键字就是提示错误信息注释两行代码
主要方法:
wxml
<block wx:for-items="{{result}}"> <view style="width:100%; height: 50rpx"></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/apihttps://img.qb5200.com/download-x/data/Android/30/1', method: 'GET', success:function(res) { that.setData({ result: res.data.results }) } }) }, listenerButton:function() { } })
感谢阅读此文,希望能帮助到大家,谢谢大家对本站的支持!
加载全部内容