getDetails返回为null,错误code:500
之前都运行正常,能爬到数据。昨天就全返回null了,日志如上
之前都运行正常,能爬到数据。昨天就全返回null了,日志如上
2020-10-02
onLoad: function(options) {
var that = this
// console.log(options);
this.setData({
movieId: options.movieid
});
wx.showLoading({
title: '加载中',
})
wx.request({
url: `https://frodo.douban.com/api/v2/movie/${options.movieid}?apiKey=054022eaeae0b00e0fc068c0c0a2102a`,
method:"GET",
//header : {},
success:function(res){
console.log(res.data)
if (res.statusCode==200){
that.setData({
detail:res.data
})
}
wx.hideLoading();
},
fail:function(err){
console.error(err)
wx.hideLoading();
}
})
},
改成request方式可以出来数据,很奇怪为什么云函数方式不行!
举报