慕课网-微信小程序入门与实战-常用组件API开发技巧项目实战-第7章开始制作电影资讯页面-RESTful API简介及调用豆瓣API

RESTful API简介及调用豆瓣API

1.进入目录 pages/movies,修改文件 movies.js,调用豆瓣电影数据的api

Page({
  onLoad:function(event) {
    wx.request({
      url:'https://api.douban.com/v2/movie/top250',
      data:{},
      method:'GET',
      header:{
        "Content-Type":"json"
      },
      success:function(res){
        console.log(res)
      },
      fail:function(error){
        console.log("failed")
        console.log(error)
      },
      complete:function(){

      }
    })
  }
})

  

posted on 2019-12-19 14:48  herisson_pan  阅读(8)  评论(0)    收藏  举报

导航