访问不到豆瓣的电影数据

来源:4-3 电影列表

xiaoyinghuan

2019-06-05 17:25

`http://api.douban.com/v2/movie/in_theaters?start=${event.start}&count=${event.count}`这样写好为什么访问的数据是空的

写回答 关注

2回答

  • 谢成
    2019-06-06 09:46:19

    由于最近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

  • Jazmine
    2019-06-05 21:52:50

    老师说最近api有了变化,你试试这个

    rp(`http://api.douban.com/v2/movie/in_theaters?apikey=0df993c66c0c636e29ecbb5344252a4a&start=${event.start}&count=${event.count}`)


轻松入门微信小程序与云开发

深入浅出微信小程序核心基础与云开发,使你掌握小程序开发必备技能。

64548 学习 · 1742 问题

查看课程

相似问题