# fetch & axios
为什么 axios 中可以通过 res.data
获取 json 数据,而 fetch 不可以直通过 res.json()
获取 json 数据?
因为 axios 和 fetch 实现不一样,fetch 中的第一个 then 返回的 res.json () 也是一个 promise。
1 | // chrome |
为什么 axios 中可以通过 res.data
获取 json 数据,而 fetch 不可以直通过 res.json()
获取 json 数据?
因为 axios 和 fetch 实现不一样,fetch 中的第一个 then 返回的 res.json () 也是一个 promise。
1 | // chrome |