问答详情
源自:4-3 电影列表

为什么我每次加载都是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()})


提问者:慕粉5472118 2019-12-25 11:03

个回答

  • qq_慕婉清8031472
    2019-12-25 15:18:40
    已采纳

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