🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
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数据 ~~~