ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的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数据 ~~~