originA certain page needs to download all data, the amount of data to be downloaded is large, and the interface delay is long... The initial data loading of a certain page takes a long time, but a single search is fast. When the initial data is loading, the search interface returns, and the subsequent return of the initial data covers the display of the searched data.... These situations require us to:
status quoThe system is a secondary development based on the open source vue-element-admin of Laoge Huakucha. The request uses axios, and the key code of the encapsulated request.js is as follows: // create an axios instance const service = axios.create({ baseURL: process.env.VUE_APP_BASE_API, // url = base url + request url withCredentials: true, // send cookies when cross-domain requests timeout: 500000, // request timeout transformRequest: [function(data) { // Perform arbitrary conversion on data return Qs.stringify({ ...data }, // array conversion { arrayFormat: 'brackets' }) }] }) // request interceptor service.interceptors.request.use( config => { // do something before request is sent if (store.getters.token) { // let each request carry token // ['X-Token'] is a custom headers key // please modify it according to the actual situation config.headers['token'] = getToken() } return config }, error => { // do something with request error console.log(error) // for debug return Promise.reject(error) } ) Method to initiate the request: export function remoteApi(data) { return request({ url: '/api', method: 'post', data }) } Cancel request cancelTokenIts official documentation: Cancel: const CancelToken = axios.CancelToken; const source = CancelToken.source(); axios.get('/user/12345', { cancelToken: source.token }).catch(function(thrown) { if (axios.isCancel(thrown)) { console.log('Request canceled', thrown.message); } else { // Handle error } }); axios.post('/user/12345', { name: 'new name' }, { cancelToken: source.token }) // Cancel the request (message parameter is optional) source.cancel('Operation canceled by the user.'); Modified request methodexport function remoteApi(data, cancelToken) { return request({ url: '/api', method: 'post', cancelToken, data }) } When making an actual request, create a cachelToken: // In the component method this.cancelToken = CancelToken.source() remoreApi(data, this.cancelToken).then(....).catch(....).finally(....) To cancel a request, execute: // In the component method this.cancelToken.cancel('Cancel download') Avoid duplicate requestsAvoid repeated requests to an interface to prevent the return data of the interface with a longer delay from overwriting the return data of another interface, causing data display errors. The idea is relatively simple, using a global Map to store request identifiers and corresponding cancelTokens. Before initiating a request, call the cancel method of the corresponding cancelToken according to the request identifier, and then issue a new request to meet the conditions. SummarizeThis is the end of this article about canceling axios requests and avoiding duplicate requests. For more information about canceling axios 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:
|
<<: Detailed explanation of MLSQL compile-time permission control example
>>: A brief analysis of vsftpd service configuration in Linux (anonymous, user, virtual user)
The reason is that it was not uninstalled cleanly...
Install PostgreSQL 11 on CentOS 7 PostgreSQL: The...
Includes the process of initializing the root use...
Table of contents Problem Description Cause Analy...
Effect picture: 1. Import files <script src=&q...
Code first, then text Copy code The code is as fol...
This article example shares the specific code of ...
1. concat() function Function: Concatenate multip...
I installed IE8 today. When I went to the Microso...
Find the problem Recently, I found a problem at w...
The data backup operation is very easy. Execute t...
Preface At work, we often need to operate in a Li...
example: <html> <head> <style type...
Today I will introduce two HTML tags that I don’t...
Table of contents introduce Object attributes in ...