葡萄牙语版
Axios 和 Fetch 是在 JavaScript 中发出 HTTP 请求的流行工具,但它们有一些关键的区别。总结如下:
Axios:
axios.get('/api/data') .then(response => console.log(response.data)) .catch(error => console.error(error)); const options = { url: 'http://localhost/test.htm', method: 'POST', headers: { 'Accept': 'application/json', 'Content-Type': 'application/json;charset=UTF-8' }, data: { a: 10, b: 20 } }; axios(options) .then(response => { console.log(response.status); });
获取:
fetch('/api/data') .then(response => { if (!response.ok) { throw new Error('Network response was not ok'); } return response.json(); }) .then(data => console.log(data)) .catch(error => console.error(error)); const url = "https://jsonplaceholder.typicode.com/todos"; const options = { method: "POST", headers: { Accept: "application/json", "Content-Type": "application/json;charset=UTF-8", }, body: JSON.stringify({ a: 10, b: 20, }), }; fetch(url, options) .then((response) => response.json()) .then((data) => { console.log(data); });
两者都有各自的优点,选择通常取决于您的具体需求和偏好。如果您正在构建具有大量 API 交互的大型应用程序,Axios 可以使某些任务变得更容易,而 Fetch 非常适合简单的任务。
Axios 提供了一个用户友好的 API,可以简化大多数 HTTP 通信任务。但是,如果您更喜欢使用本机浏览器功能,您绝对可以使用 Fetch API 自己实现类似的功能。
正如我们所探索的,使用浏览器中可用的 fetch() 方法复制 Axios 的核心功能是完全可行的。包含客户端 HTTP 库的决定最终取决于您对本机 API 的舒适度以及项目的具体要求。
更多信息:https://medium.com/trainingcenter/axios-ou-fetch-765e5db9dd59
以上是Axios 与 Fetch的详细内容。更多信息请关注PHP中文网其他相关文章!