Cancel Preceded Requests from Frontend side Using Axios

Cancel Preceded Requests from Frontend side Using Axios

There are some cases that user sends simultaneous requests while preceded requests are still pending. In this case, you will need to cancel the preceding requests. Axios provides cancelTokenfeature for this purpose. This stores cancelToken of previous request and use it to cancel the preceded requests with the token value.