微信小程序-网络请求API

wx.request(OBJECT)发起的是https请求。一个微信小程序,同时只能有5个网络请求连接
OBJECT参数说明:

微信小程序-网络请求API_第1张图片

效果图:

示例代码:
net.js

Page({
  data:{
    result:{},
  },
  onLoad:function(options){
    this.getDate('http://baobab.wandoujia.com/api/v2/feed?num=2');
  },
  /**
   * 网络请求的函数:接收一个URL参数
   */
  getDate:function(URL){
        var that = this; 
        // 申请一个网络请求
           wx.request({
        url:URL,
        method:'GET',
      //添加data
      // data: {
      //   x: '',
      //   y: ''
      //   },
      //添加头信息
      // header: {
      //   'Content-Type': 'application/json'
      // },
        // 请求成功的回调
        success: function(res) {
            that.setData({
                result:res.data
            })
            console.log(res.data)
        }
        })
  },
})

net.wxml:



 第{{index+1}}个列表

 

 

 


来源:http://bbs.520it.com/forum.php?mod=viewthread&tid=2535&extra=page%3D1

你可能感兴趣的:(微信小程序-网络请求API)