NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
![](https://box.kancloud.cn/ebb8cc255667267e60c88d1342d5c270_481x507.png) ``` //index.js Page({ data: { msg:"hello world" }, onLoad:async function(){ var data = await this.http(); console.log(data); }, http(){ return new Promise((resolve,reject)=>{ wx.request({ url: 'https://douban.uieee.com/v2/movie/in_theaters', data: {}, header: {'content-type':'json'}, method: 'GET', dataType: 'json', responseType: 'text', success: (res)=>{ resolve(res) } }); }) } }) ```