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

老师 下拉后又显示相同的数据

为什么我的start每次都是从0开始的https://img.mukewang.com/5d623df700015b4709290672.jpg

提问者:weixin_慕虎8531678 2019-08-25 15:51

个回答

  • 谢成
    2019-08-26 09:11:48
    已采纳

    每次请求的时候,start的值需要改变,目前一直是0。请检查云函数中接受start参数的地方是否有问题:

    https://img3.mukewang.com/5d6331950001910718601340.jpg


  • xiao肥瑞
    2019-09-14 12:03:36

    云函数中不能换行?我看了没有行过啊?

  • 慕粉2151516
    2019-08-26 22:48:25

    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会有重复情况

    //亲测

  • weixin_慕虎8531678
    2019-08-26 21:30:57

    https://img3.mukewang.com/5d63dedb0001639013370801.jpg这是我的云函数

  • An_chor
    2019-08-26 20:28:29

    你看一下你的云函数那里api接口会不会写错了,这是我的可以了的,参考一下https://img4.mukewang.com/5d63d062000123f511980327.jpg