微信小程序Swiper+wx.request 数据绑定刷新

.wxml

  autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}">
 
   
     
   

 

 



//界面加载回调 .js

   onLoad:function()
   {
      var that = this 
           wx.request({
      url: requestUrl, //仅为示例,并非真实的接口地址
      method: 'POST',  
      data: {
      },
      header: {
          'content-type': 'application/json'
      },
      success: function(res) {
      var dataSource = res.data
    that.setData({  
    imgUrls : dataSource.lists.list0 
    })  
    },
       fail: function({errMsg}) 
    {
    })
      }
})

   }


数据请求回来后需要设置数据

调用

that.setData({  
    imgUrls : dataSource.lists.list0 
    })  

你可能感兴趣的:(微信小程序,数据)