In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-09-22 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/03 Report--
This article focuses on "how to solve the problems caused by clicking and switching functions on multiple Tab pages". Interested friends may wish to have a look at it. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn "how to solve the problems caused by clicking and switching functions on multiple Tab pages".
You must have encountered such a similar scenario: multiple Tab pages click switch function, if the user clicks frequently, the current page is likely to display the data of other pages.
Because the time for returning information from each interface is different, you cannot guarantee that the first request will return the data first, so it is likely that the data will stay on one page but appear on another page. The term for this asynchronous situation is called asynchronous racing.
At this time, some readers will surely say, this is not easy, I can easily come up with several solutions for you.
Throttling, anti-shaking, plus Loading!
These practices can solve the problem, but they all address the symptoms rather than the root causes, and affect the user experience, in fact, there is a perfect way to solve the problem: cancel the request.
Of course, this cancellation request just does not continue to process the subsequent response of the interface, and does not really cancel the request. After all, if the request has been sent, we can't get it back along the network cable.
Let's take axios as an example to see how to cancel a request:
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 (the message parameter is optional) source.cancel (' Operation canceled by the user.')
The usage is quite simple, and we can use this method to solve the situation where asynchronous racing may occur. Simple and easy to use, will not affect the user experience, encapsulated code can be used.
At this point, I believe you have a deeper understanding of "how to solve the problems caused by clicking and switching functions on multiple Tab pages". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
The market share of Chrome browser on the desktop has exceeded 70%, and users are complaining about
The world's first 2nm mobile chip: Samsung Exynos 2600 is ready for mass production.According to a r
A US federal judge has ruled that Google can keep its Chrome browser, but it will be prohibited from
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
About us Contact us Product review car news thenatureplanet
More Form oMedia: AutoTimes. Bestcoffee. SL News. Jarebook. Coffee Hunters. Sundaily. Modezone. NNB. Coffee. Game News. FrontStreet. GGAMEN
© 2024 shulou.com SLNews company. All rights reserved.