问答详情
源自:4-4 电影详情

老师,请看一下电影详情页还是不显示

http://img2.mukewang.com/624fe4850001470f07441330.jpg

我把js代码改成了wx.request的了但还是不行,会显示400

http://img4.mukewang.com/624fe4cc0001520811240086.jpg

我的代码如下:

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那需要怎么加呢,老师请指教

提问者:qq_慕仰8003454 2022-04-08 15:33

个回答

  • 谢成
    2022-04-09 21:33:07

    建议仔细看一下课程首页的课程公告,里面有详细的代码。

    1、这个接口需要在云函数端调用

    2、headers属性中有的是不需要写的

  • qq_慕仰8003454
    2022-04-09 16:47:47

    我的api是这样写的http://img4.mukewang.com/6251481c000111c413800978.jpg

    请老师看一下有没有问题