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] }) } } }) },只显示最后一条
添加回答
举报
0/150
提交
取消