合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
![](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) } }); }) } }) ```