为什么我的start每次都是从0开始的
每次请求的时候,start的值需要改变,目前一直是0。请检查云函数中接受start参数的地方是否有问题:
云函数中不能换行?我看了没有行过啊?
return rp(`http://api.douban.com/v2/movie/in_theaters?apikey=0df993c66c0c636e29ecbb5344252a4a&start=0&count=10`)
.then(function (res) {
console.log(res);
return res;
})
.catch(function (err) {
console.error(err);
});
//不要用start=${event.start}&count=${event.count} 而且 start=1&count=10会有重复情况
//亲测
这是我的云函数
你看一下你的云函数那里api接口会不会写错了,这是我的可以了的,参考一下