axios 是一个基于 Promise 的 HTTP 客户端,可以用于浏览器和 Node.js。
如果使用 npm 安装:
npm install axios
如果使用 CDN 引入(已在本页面引入):
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
axios.get('https://jsonplaceholder.typicode.com/posts/1')
.then(response => console.log(response.data))
.catch(error => console.error(error));
axios.post('https://jsonplaceholder.typicode.com/posts', {
title: 'Hello Axios',
body: '这是一条测试数据',
userId: 1
}).then(response => console.log(response.data))
.catch(error => console.error(error));