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

老师想问下,电影列表这一节有报错,应该是云函数这块是什么原因?

http://img2.sycdn.imooc.com/5f30ede100015d2b10920234.jpg想问下 出现这种情况是什么原因

提问者:qq_allen珊_0 2020-08-10 14:49

个回答

  • 谢成
    2020-08-10 20:58:20
    已采纳

    请把console.err()改为console.error()

  • qq_allen珊_0
    2020-08-11 16:01:37

    index.js里改了,还是报同样的错误。

    // 云函数入口函数

    exports.main = async (event, context) => {

     


      return rp(`http://api.douban.com/v2/movie/in_theaters?start=${event.start}&count=${event.count}`)  //电影列表及数据分页

      .then(function (res) {

        console.log(res);

          return res;

      })

      .catch(function (err) {

          console.error(err);

      });

    }