已采纳回答 / 谢成
你现在使用的API我不确定是否好用,但我推荐给你那个肯定是好用的,把http://api.douban.com/v2/movie/in_theaters?apikey=0df993c66c0c636e29ecbb5344252a4a&start=0&count=10 粘贴到浏览器里是有结果返回的,说明接口没有问题,那问题应该就出现在代码上。1、确定API确实改成了我给你的这个2、确定云函数上传成功了3、在云控制台中进行云端测试,看结果是否是正确的4、在小程序端输出这个res,看结果是什么
2019-05-16
讲师回答 / 谢成
那个API只能通过云函数请求。如果想在小程序端请求的话,试试这个: https://m.douban.com/rexxar/api/v2/subject_collection/movie_showing/items?start=0&count=10
2019-05-16
老师,这里不能直接 this.setData({
movieList:this.movieList.concat(JSON.parse(res.result).subjects);});
需要设置变量,不然会报 Cannot read property 'concat' of undefined,我这样改的:var dataList = this.movieList.concat(JSON.parse(res.result).subjects);
this.setData({
movieList: dataList
});
movieList:this.movieList.concat(JSON.parse(res.result).subjects);});
需要设置变量,不然会报 Cannot read property 'concat' of undefined,我这样改的:var dataList = this.movieList.concat(JSON.parse(res.result).subjects);
this.setData({
movieList: dataList
});
已采纳回答 / 谢成
在请求API的url后面跟一个apikey参数:http://api.douban.com/v2/movie/in_theaters?apikey=0df993c66c0c636e29ecbb5344252a4a&start=0&count=10
2019-05-16