axios.create\
时间: 2023-09-11 09:07:28 浏览: 77
axios.create is a method in the Axios library that creates a new instance of the Axios client. This new instance can be customized with default configuration options such as base URL, headers, and timeout values.
By using axios.create, you can create multiple instances of the Axios client with different configurations, making it easier to manage different API endpoints or environments.
Here's an example of using axios.create to create a new Axios instance with a base URL:
```
import axios from 'axios';
const instance = axios.create({
baseURL: 'https://api.example.com',
});
instance.get('/users')
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error(error);
});
```
In this example, the `instance` variable is a new Axios instance with a base URL of `https://api.example.com`. When we call `instance.get('/users')`, Axios will send a GET request to `https://api.example.com/users`.
阅读全文