1. Introduction:In the process of web application development, we often encounter scenarios where multiple requests are initiated at one time. In this case, we usually have two approaches:
In our projects, the above two methods are currently used in most cases. Today I’d like to introduce a new method. 2. CancelToken ClassWe previously instantiated a Promise. Whether this object is successful or not cannot be determined outside the function. Here we need to use a little trick to separate a promise from its resolution. Resolve can be triggered at any time: // a promise let resolvePromise let p = new Promise((resolve, reject) => { resolvePromise = resolve }) // This executes resolvePromise() externally Ok, with this premise, we need to use the axios.CancelToken class. This class is equivalent to opening another promise at each request and forming a promise.race (request p1, cancel request p2). The resolve method in the promise is assigned to an external variable to receive. We can manually decide whether to cancel the previous request based on demand. In fact, this is similar to the Promise.race that we wrote when the fetch encapsulation interface timed out. cancelToken also provides a corresponding static method source to generate a cancelToken and a cancel method, which is actually a resolve of this promise. CancelToken.source = function source() { var cancel; // var token = new CancelToken(function executor(c) { cancel = c; }); return { token: token, cancel: cancel, }; According to our common caching method, we can declare a map to store the URL of each request and the corresponding cancel method. //Declare a global map const pendingHttp = new Map() // CancelToken class built into axios const CancelToken = axios.CancelToken function addApi (config) { config.cancelToken = new CancelToken((cancel) => { const url = config.url console.log(pendingHttp) if (!pendingHttp.has(url)) { pendingHttp.set(url, cancel) } }) } function cancelApi (config) { const url = config.url if (pendingHttp.has(url)) { // If the current request identifier exists in pending, you need to cancel the current request and remove const cancel = pendingHttp.get(url) cancel(url + 'cancelled') pendingHttp.delete(url) // Clear the cache of the current url} }
Just like operating a timer, try to cancel the previous one before starting the next one. httpService.interceptors.request.use(config => { cancelApi(config) addApi(config) // When debugging locally, it is a cross-domain situation, and adding a request header will have restrictions (the project code here is irrelevant) const { headers = {} } = config; const { globalObj = {} } = window Object.assign(headers, globalObj, { from }) return config }, error => { console.log(error) return Promise.reject(error) }) Then there is another possibility that the first request has returned and the same request is initiated again, so cancelApi is also required in the response. httpService.interceptors.response.use( response => { cancelApi(response.config) sentryCatchApi(response) }, error => { // Request timeoutif (error.message.includes('timeout')) { // Determine whether the request exception information contains the timeout string Toast.error({ text: 'Webpage request timeout, please refresh and try again~' }) } sentryCatchApi(error) return Promise.reject(error) } ) We need to note that cancel is actually resolve. The parameters passed in when we cancel the execution will eventually be returned as parameters in the error callback of the response, so our error capture method may report an error. // Assume that our error method is encapsulated like this. Let's take a look at sentryCatchApi error => { sentryCatchApi(error) return Promise.reject(error) } // Because this method needs to receive an object, but when we cancel the request, a string is returned, and an error is reported. function sentryCatchApi (res) { try { res = res || {} const resData = res.data || {} Sentry.captureException(JSON.stringify(resData)) console.log(` Failed to obtain data: Please open the address of webview in the browser and paste it out to facilitate troubleshooting: Interface related information: Interface address: ${res.config.url}, Interface return value: code: ${resData.code}, message:${resData.message}, data:${JSON.stringify(resData.data)} `) } catch (err) { console.error(err) } } Need to use the isCancel api error => { if (axios.isCancel(error)) return console.log('The request was canceled', error.message) sentryCatchApi(error) return Promise.reject(error) } Final resultThere is no error in the console. (To be improved in the project later) SummarizeThis is the end of this article about how to use axios to filter repeated requests in a project. For more information about axios filtering repeated requests, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Problems encountered in the execution order of AND and OR in SQL statements
[Problem description] Our production environment ...
MySQL 8.0.3 is about to be released. Let’s take a...
<br />Original: http://uicom.net/blog/?p=762...
April 23, 2020, Today, Ubuntu 20.04 on Windows al...
This article describes the usage of MySQL stored ...
Sometimes, we don't want the content presente...
The Swap partition of the Linux system, that is, ...
Traceroute allows us to know the path that inform...
1. Preparation 1.1 Download the Python installati...
Table of contents When to use Structural branches...
Today someone talked to me about a website develo...
Table of contents 1. Bootstrap5 breakpoints 1.1 M...
MySQL5.6 How to create SSL files Official documen...
To summarize: Readonly is only valid for input (te...
Logpoint-based replication 1. Create a dedicated ...