一些学习记录

🚀 Axios 简介

axios 是一个基于 Promise 的 HTTP 客户端,可以用于浏览器和 Node.js。

📌 1. 安装 Axios

如果使用 npm 安装:

npm install axios

如果使用 CDN 引入(已在本页面引入):

<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>

📌 2. 发送 GET 请求

axios.get('https://jsonplaceholder.typicode.com/posts/1')
    .then(response => console.log(response.data))
    .catch(error => console.error(error));
    

📌 3. 发送 POST 请求

axios.post('https://jsonplaceholder.typicode.com/posts', {
    title: 'Hello Axios',
    body: '这是一条测试数据',
    userId: 1
}).then(response => console.log(response.data))
  .catch(error => console.error(error));
    

📌 4. Axios 其他功能

浙ICP备2022012821号-1