App({
globalData:{
g_isPlayingMusic:false,
g_currentMusicPostId: null,
doubanBase:"http://t.yushu.im"
}
})
Page({
onLoad:function(event){
wx.request({
url: 'https://api.douban.com/v2/movie/top250',
data:{},
method:'GET',
header:{
"Content-Type":""
},
success:function(res){
console.log(res);
},
fail:function(){
console.log("请求失败");
}
})
}
})