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数据
~~~