老师,这个api接口应该是这样吗
这列没有res, 改成 return htmlString,然后请重新上传云函数。
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);
});
}