为什么我返回的result:null?是因为豆瓣电影的API接口变化的原因吗?谢谢各位的解答~
return rp(`http://api.douban.com/v2/movie/in_theaters?apikey=0df993c66c0c636e29ecbb5344252a4a&start=${event.start}&count=${event.count}`)
.then(function (res) {
console.log(res);
return res;
})
.catch(function (err) {
console.error(err);
});