Route parameters, route navigation guards: retain search results when the page returns
Requirement DescriptionWhen using Vue to develop the front end, I encountered a scenario: searching for some data on the home page, clicking on the search results to enter the details page, and then returning to the home page after browsing the details page. But at this time, the previous search history and page turning will disappear, which will result in a poor user experience. Therefore, it is necessary to restore the page parameter status before the jump after returning. Of course, if conditions permit, the easiest way is to click on the search results and open them in a new page (such as Baidu does). However, the current requirement is a complete Vue development project, not opening an external address, and the details are not much, so it is not appropriate to use a new page (the performance is poor and it is easy to create a huge number of tabs). Here are two solutions that are easier to implement:
Advantages: no impact on refresh; simple implementation Disadvantages: Parameters can only be basic types and have limited length; the path looks ugly; only valid for browser returns, manual jump back to the homepage does not work
Advantages: The parameter type and length are relatively free; the path looks refreshing and beautiful; it is effective for returning to the homepage in any way Disadvantages: Additional data storage operations are required. If store mode or vuex is used, refreshing the page will fail. Solution 1: Routing parameters If there are not many parameters and you don't mind having a long string of parameters after the path (shed tears of obsessive-compulsive disorder), you can put the parameters directly in the routing path (for example, Baidu does this: After clicking search, use vue router to jump and pass parameters: // Search page search(param) { // Other processing this.$router.push({ name: "Index", query: { ...this.queryParam }, // Expand the object into keys and values }); }, Here we should pay attention to the difference between query parameter passing and params parameter passing: the parameters of the former will be continued after the path in the form of In addition, since this parameter is to be placed in the path, it can only be a key-value pair of basic types, and arrays or objects cannot be well supported. If the parameters are simple, you can expand the corresponding objects as parameters (you need to ensure that there are no duplicate keys in different objects), but when reading in the search result page that you jump to, you can only obtain the attributes one by one. // Search results page mounted() { // Distinguish between $route and $router if (this.$route.query.type) { let type = this.$route.query.type; let keyword = this.$route.query.keyword; // ...get each parameter one by one//perform the search operation} else { // No search parameters (because my search results and homepage are on the same page, so it is possible that I just open the homepage normally) } }, Solution 2: Local storage parametersSince the parameters I want to store are three objects, it is too inconvenient to expand them into key values, so I used this solution. Since vuex is also used in the project, it is stored in vuex. It can be stored anywhere according to the actual situation. The disadvantage of vuex is that it disappears once it is refreshed, which has little impact on search results and other functions that optimize the experience. If there is a corresponding demand, it can be stored in local storage. Because there are many ways to change parameters in my needs, it is too troublesome to store parameters when changing, and it is easy to make mistakes or omissions. Therefore, we choose to store the required parameters uniformly before routing jump. Vue Router provides a series of routing navigation guard APIs to implement corresponding functions, including global pre/parse/post guards, routing configuration guards, component guards, etc. The so-called "guard" is actually equivalent to the "hook" in the rendering process, just like the familiar created and mounted. Complete navigation parsing process:
Obviously, the // Search results page beforeRouteLeave(to, from, next) { // vuex storage operation this.$store.commit("updateRevert", { query: this.queryParam, page: this.pageParam, filter: this.filter, }); next(); //Continue the subsequent navigation parsing process}, When loading a page, check if there are any saved parameters, and if so, restore them accordingly: // Search results page mounted() { // Check if there are any saved search parameters in vuex if (this.$store.state.revert) { const revert = this.$store.state.revert; this.queryParam = revert.query; this.pageParam = revert.page; // You can directly retrieve the entire object // Search operation } else { // No search parameters (because my search results and homepage are on the same page, so it is possible that I just open the homepage normally) } }, Conclusion & References The above are two ways to save page status. Many of these choices are related to the actual needs at the time, so they may not be the best solution in all scenarios. For your specific needs, the solutions in this article may be insufficient, or there may be simpler methods; the article explains the actual needs and basis of each step as much as possible for reference. For any omissions or deficiencies in the article, please feel free to discuss and correct them in the comments. Programmatic navigation Route Navigation Guard This is the end of this article about Vue routing return and restore page status. For more relevant Vue routing page status 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 deploy FastDFS in Docker
>>: Tutorial on installing MySQL database and using Navicat for MySQL
This article shares the specific code of Node.js+...
Today, the company's springboot project is re...
It's simple, just go to the tutorial, blogger...
1. mpstat command 1.1 Command Format mpstat [ -A ...
Floating elements cause their parent elements to ...
If you want to change your host name, you can fol...
There are many ways to generate a global ID. Here...
Many people have read this book: "Grow as a ...
1. CSS3 triangle continues to zoom in special eff...
Table of contents Overview Same Origin Policy (SO...
This article shares the specific code of uniapp t...
I recently encountered a problem when doing IM, a...
gzip is a command often used in Linux systems to ...
MySQL multi-table query (Cartesian product princi...
Table of contents 1. Scenario 2. Solution 3. Conc...