微信小程序把玩(三十)wx.request(object) API

原文:微信小程序把玩(三十)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 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/api/data/Android/30/1‘,
          method: ‘GET‘,
          success:function(res) {
              that.setData({
                  result: res.data.results
              })
          }

      })
  },

  listenerButton:function() {


  }

})

微信小程序把玩(三十)wx.request(object) API

上一篇:java核心知识点学习----equals和==的比较、单例模式


下一篇:微信小程序把玩(三十七)location API