mirror of
https://github.com/tenrok/axios.git
synced 2026-06-17 19:21:29 +03:00
Interceptor clear (#4248)
* Adding interceptor clearing * Fixing spacing * changed clear to empty array * fixed interceptor clear test Co-authored-by: Andrew <Andrew@Andrews-MacBook-Pro.local> Co-authored-by: Jay <jasonsaayman@gmail.com>
This commit is contained in:
@@ -638,6 +638,15 @@ const myInterceptor = axios.interceptors.request.use(function () {/*...*/});
|
||||
axios.interceptors.request.eject(myInterceptor);
|
||||
```
|
||||
|
||||
You can also clear all interceptors for requests or responses.
|
||||
```js
|
||||
const instance = axios.create();
|
||||
instance.interceptors.request.use(function () {/*...*/});
|
||||
instance.interceptors.request.clear(); // Removes interceptors from requests
|
||||
instance.interceptors.response.use(function () {/*...*/});
|
||||
instance.interceptors.response.clear(); // Removes interceptors from responses
|
||||
```
|
||||
|
||||
You can add interceptors to a custom instance of axios.
|
||||
|
||||
```js
|
||||
|
||||
Reference in New Issue
Block a user