AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
https://doc.quickapp.cn/features/system/fetch.html manifest.json里配置 ~~~ { "name": "system.fetch" } ~~~ ![](https://img.kancloud.cn/51/7b/517bca78679661e87cb34b0013e7a0e4_670x258.png) 代码案例: ~~~ fetch .fetch({ url: 'http://www.example.com', responseType: 'json' //返回json数据 }) .then(res => { const result = res.data //拿到json数据 ~~~