data: {
movies:[],
},
onLoad: function (options) {
let that = this
wx.request({
url:'https://api.douban.com/v2/movie/in_theaters',
header: {
"Content-Type": "json"
},
success:function(res){
let data = res.data.subjects
for(let i=0;i<data.length;i++){
that.setData({
movies: data[i]
})
}
}
})
},
只显示最后一条
繁花不似锦
肥皂起泡泡
相关分类