axios
是一个基于 Promise 的 HTTP 客户端,用于浏览器和 Node.js。它有许多配置项可以自定义 HTTP 请求。以下列举 axios
中的五个常用配置项及其含义,并提供示例代码:
1. method
- 含义:指定请求方法(例如 GET, POST, PUT, DELETE 等)。
示例代码:
const axios = require('axios');axios({
method: 'get',
url: 'https://api.example.com/data'
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error(error);
});
2. url
- 含义:请求的 URL 地址。
示例代码(同上,url
已在示例中):
3. headers
- 含义:自定义请求头。
示例代码:
const axios = require('axios');axios({
method: 'post',
url: 'https://api.example.com/login',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer your_token_here'
},
data: {
username: 'user',
password: 'pass'
}
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error(error);
});
4. params
- 含义:用于 GET 请求的查询参数。
示例代码:
const axios = require('axios');axios({
method: 'get',
url: 'https://api.example.com/search',
params: {
q: 'search query',
page: 1
}
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error(error);
});
5. timeout
- 含义:指定请求超时时间(以毫秒为单位)。
示例代码:
const axios = require('axios');axios({
method: 'get',
url: 'https://api.example.com/slow-endpoint',
timeout: 5000 // 设置超时时间为 5 秒
})
.then(response => {
console.log(response.data);
})
.catch(error => {
if (error.code === 'ECONNABORTED') {
console.error('Request timed out');
} else {
console.error(error);
}
});
这些只是 axios
配置项中的一部分,实际上 axios
提供了更多的配置项,如 data
(用于 POST, PUT 请求的主体),responseType
(设置响应类型),withCredentials
(是否跨域请求时携带凭证),等等。具体可查阅 axios
的官方文档以获取更多信息