老师,试过之前的api接口result都为null
老师,这个api接口应该是这样吗
老师,这个api接口应该是这样吗
2019-12-03
then中的参数你写成了htmlString,这应该是res!!!
完整代码如下:
// 云函数入口函数
exports.main = async (event, context) => {
// event.start = 4;
// event.count = 10;
console.log('event.start--> ', event.start, ' event.count--> ', event.count);
return rp(`http://api.douban.com/v2/movie/in_theaters?apikey=0df993c66c0c636e29ecbb5344252a4a&start=${event.start}&count=${event.count}`)
.then(res => {
console.log('请求成功:', res);
return res;
})
.catch(err => {
console.error('请求失败:', err);
});
}
举报