为了账号安全,请及时绑定邮箱和手机立即绑定

为什么我每次加载都是20条电影数据啊,count没有用啊

云函数index.js

// 云函数入口函数exports.main = async (event, context) => {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.log(err)})}

movie.js

wx.cloud.callFunction({name: "movielist",data: {start: this.data.movielist.length,count: 10}}).then(res => {console.log(res)this.setData({movielist: this.data.movielist.concat(JSON.parse(res.result).subjects)})wx.hideLoading()}).catch(err => {console.log(err)wx.hideLoading()})


正在回答

1 回答

云函数中 地址两侧的单引号 是 1 左边的引号。。。

0 回复 有任何疑惑可以回复我~
#1

慕粉5472118 提问者

谢谢,我之前看到了,才知道这是es6写法
2019-12-25 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么我每次加载都是20条电影数据啊,count没有用啊

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信