AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
![](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) } }); }) } }) ```