小程序渲染页面

1:请求数据

onLoad: function () {
//指定
    var that = this;
    wx.request({
      url: '数据接口', //仅为示例,并非真实的接口地址
      data: {
        id: '1',
        position: '2',
        class_id: '3'
      },
      method: 'POST',
      header: {
        'content-type': 'application/x-www-form-urlencoded' // 默认值
      },
      success(res) {
        console.log(res.data);
//绑定
        that.setData({
          data:res.data
        })
      }
    })
  }

2:渲染页面


    {{item.title}}

3:数据示例

小程序渲染页面_第1张图片

 

你可能感兴趣的:(小程序)