js implements axios limit request queue

js implements axios limit request queue

The background is:

In actual development, you may encounter network problems or a large number of queries, and the user may initiate the next request before the previous request is completed.

What will happen?

However, sending the same request multiple times to the server will undoubtedly put pressure on the server, so it is necessary to limit requests on the front end after optimizing the server query speed and when the user's network conditions are poor.

The cancelToken that comes with axios can help us achieve this requirement, and provides us with a ready-made api axios.CancelToken, which is a callback function whose return value is a request information. We can execute this callback function when we need to cancel. The specific implementation is as follows:

const service = axios.create({});
const penddingMap = new Map();
const addPendding = (config) => {
 config.cancelToken = config.cancelToken || new axios.CancelToken(cancel => {
  if (!penddingMap.has(config.url)){
   penddingMap.set(config.url,cancel);
  }
 })
}

const removePendding = (config) => {
 if (penddingMap.has(config.url)){
  let cancel = penddingMap.get(config.url);
    cancel(config.url);
    penddingMap.delete(config.url)
 }
}

A Map is maintained locally to store each request information. In addPendding, it will first determine whether there is a cancelToken. If there is, there is no need to recreate a cancelToken. In removePendding, it is determined whether the request information is in the Map. If the request exists in the Map, the cancel function is executed and the request in the Map is deleted.

Specific application in interceptor:

service.interceptors.request.use(config => {
 removePending(config) // If it exists in the Map, cancel the request first addPendding(config) // Add the request to the Map return config
})

service.interceptors.response.use(response => {
 ``` // some code
  return response.data
}, error => {
 // Capture cancel request and throw if(error instanceof Cancel){
    error.message = 'The previous request has not yet ended, please wait~';
    Message.error(error.message);
    return Promise.reject(error.response) 
  // Pay attention to the throw here, call try-catch to capture it when requesting})
)

Once the interception is successful here, multiple requests with large traffic can be limited.

This is just an example. You can also control whether the user initiates a request by judging the button logic.

This is the end of this article about js implementing axios limiting request queue. For more relevant js axios limiting request queue content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to use Promise in JavaScript to control the number of concurrent requests
  • Sample code for using js to implement Ajax concurrent requests to limit the number of requests
  • gin Get JSON body of post request
  • JS implements request dispatcher
  • PHP implements the conversion of chrome form request data into json data used by the interface
  • Detailed explanation of several solutions for JavaScript interruption requests

<<:  A Brief Analysis of the Differences between “:=” and “=” in MySQL

>>:  How to use Docker-compose to build an ELK cluster

Recommend

Detailed explanation of tcpdump command examples in Linux

Preface To put it simply, tcpdump is a packet ana...

How to deploy Solidity smart contracts using ethers.js

If you have developed DApps on Ethereum, you may ...

MySQL Constraints Super Detailed Explanation

Table of contents MySQL Constraint Operations 1. ...

Detailed steps to configure MySQL remote connection under Alibaba Cloud

Preface As we all know, by default, the MySQL ins...

Some common properties of CSS

CSS background: background:#00ffee; //Set the back...

Draw an iPhone based on CSS3

Result:Implementation Code html <div class=...

How to recover deleted MySQL 8.0.17 root account and password under Windows

I finished learning SQL by myself not long ago, a...

CSS to achieve the effect of rotating flip card animation

The css animation of the rotating flip effect, th...

jQuery realizes the shuttle box function

This article example shares the specific code of ...

Several ways of running in the background of Linux (summary)

1. nohup Run the program in a way that ignores th...

Vue gets token to implement token login sample code

The idea of ​​using token for login verification ...

How to implement property hijacking with JavaScript defineProperty

Table of contents Preface Descriptors Detailed ex...

The most comprehensive explanation of the locking mechanism in MySQL

Table of contents Preface Global Lock Full databa...

mysql5.5 installation graphic tutorial under win7

MySQL installation is relatively simple, usually ...