这是什么原因? 还有就是api为啥没有结果
movieList: this.data.movieList.concat(JSON.parse(res.result).subjects) 这行代码报错SyntaxError: Unexpected token o in JSON at position 1 at JSON.parse (
)是什么原因movieList: this.data.movieList.concat(JSON.parse(res.result).subjects) 这行代码报错SyntaxError: Unexpected token o in JSON at position 1 at JSON.parse (
)是什么原因2019-11-15
截图中云函数的返回值还是创建云函数时候的默认值,请重新上传云函数:
豆瓣API有变化,需要在请求API的url后面跟一个apikey参数:
电影列表API:http://api.douban.com/v2/movie/in_theaters?apikey=0df993c66c0c636e29ecbb5344252a4a&start=0&count=10
电影详情API:`http://api.douban.com/v2/movie/subject/${event.movieid}?apikey=0df993c66c0c636e29ecbb5344252a4a`
举报