axios和fetch in react native之间有什么区别?

时间:2019-06-02 06:02:18

标签: react-native axios

我是React Native的新手,所以请您能详细说明这个问题吗?

1 个答案:

答案 0 :(得分:1)

总体而言,它们非常相似,唯一的区别是axios稍微发达了一些。 axios的一些优点:

Transformers: allow performing transforms on data before request is made or after response is received
Interceptors: allow you to alter the request or response entirely (headers as well). also perform async operations before request is made or before Promise settles
Built-in XSRF protection

有关更多信息,您可以查看此讨论https://github.com/axios/axios/issues/314