为什么云函数方式都不行了?
电影列表页也不能取下面20行了?
改成 wx.request 方式才可以:
getMovieList: function() {
var that = this
wx.showLoading({
title: '加载中',
})
wx.request({
url: `https://frodo.douban.com/api/v2/subject_collection/movie_showing/items?start=${this.data.movieList.length}&count=10&apiKey=054022eaeae0b00e0fc068c0c0a2102a`,
method:"GET",
//header : {},
success:function(res){
console.log(res.data)
if (res.statusCode==200){
that.setData({
movieList:that.data.movieList.concat(res.data.subject_collection_items)
})
}
wx.hideLoading();
},
fail:function(err){
console.error(err)
wx.hideLoading();
}
})
},