老师,请看一下电影详情页还是不显示
我把js代码改成了wx.request的了但还是不行,会显示400
我的代码如下:
onLoad: function (options) {
wx.showLoading({
title: '加载中',
})
wx.request({
url: `https://frodo.douban.com/api/v2/movie/${options.movieid}?apiKey=054022eaeae0b00e0fc068c0c0a2102a`,
method: "GET",
header: {
'content-type': 'application/json' // 默认值
},
success(res) {
console.log(res.data),
wx.hideLoading();
},
fail(err) {
console.error(err);
wx.hideLoading();
}
})
},
是不是没有加setdata的原因啊,如果要加setdata那需要怎么加呢,老师请指教