这是哪里有问题呢
先把console.err()改成console.error()
豆瓣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`
现在豆瓣的api需要加上apikey。
apikey=0df993c66c0c636e29ecbb5344252a4a。
之前用的老api 所以都调用失败了
豆瓣api 接口问题 解决啦