backgroundDuring the project development process, you often encounter the need to jump from the previous page to the next page, commonly known as drilling down. For example, if you need to view details of the data on the overview page, click a chart or button to jump to the details page to view the detailed data. So far, there is no unified page jump method in our project, and the way to implement page jump varies from person to person. In addition, many existing projects can only jump back and forth between two pages, and there is basically no complete function of jumping between multiple pages. As a common function of the project, related page jump executes highly repetitive code logic. It is very necessary to extract the relevant logic and encapsulate it into simple and easy-to-use public methods and public components. PurposeUnify the associated jump method logic of each project and encapsulate it into a simple and easy-to-use public component. Solution DesignFirst, let's analyze the logical steps of the related page jump:
Then, break down the above steps:
Next, in order to implement the above logic, we first determine the method used to save the data of page A and page B. VUEX is used here. Sort out the above logical steps again and draw a flow chart. flow chartSource Page Target Page Specific implementationJump from source page to target page The logic of this step is written in VUEX. Every time you need to perform this step, just call the corresponding method in VUEX. The specific implementation logic is to first add the identifiers of the source page and the target page to the routing parameters (in order to distinguish whether the current page is the target page or the returned source page), then save the data of the source page and the target page, and then perform the routing jump. Add the following two variables in store.js: tgtPageParams: {}, // Target page data for the associated jump (only one item is retained) srcPageParams: [], // Source page data of the associated jump (array type, retains data of multiple pages, can be returned in multiple layers until returning to the initial page) Then add the following method: // Associate jump, jump to the target page, and save the data of the source page and the target page to Vuex goTargetPage(state, options) { // Add tgtPageName identifier to the query of the source page to remember the target page options.srcParams.query = Object.assign({}, options.srcParams.query, { tgtPageName: options.tgtParams.name }); // Add srcPageName to the query of the target page to remember the source page options.tgtParams.query = Object.assign({}, options.tgtParams.query, { srcPageName: options.srcParams.name }); state.srcPageParams.push(options.srcParams); // Save source page data state.tgtPageParams = options.tgtParams; // Save target page data router.push({ name: options.tgtParams.name, query: options.tgtParams.query }); // Jump to target page }, The target page returns to the source pageThe logic of this step is written in VUEX. Every time you need to perform this step, just call the corresponding method in VUEX. The specific implementation logic is to obtain the source page data (including routing address and parameters) from state.srcPageParams, and then perform routing jump. Add the following method in VUEX: // Associate jump, jump back to the source page goSourcePage(state, vm) { let obj = state.srcPageParams.slice(-1)[0]; // Take the last item of the array // If Vuex has data from the previous page, return to the previous page based on the data from Vuex if (obj && Object.keys(obj).length > 0) { router.push({ name: obj.name, query: obj.query }); // Redirect } // If there is no data from the previous page in Vuex, but there is a flag for the previous page on the route, return to the previous page according to the route flag (this is to prevent the problem of Vuex data being lost and unable to return to the previous page when refreshing the details page) else if (vm && vm.$route.query.srcPageName) { router.push({ name: vm.$route.query.srcPageName }); } }, Enter the target page and use VUEX data/return to the source page to restore VUEX dataThe logic of this step is to combine step 3 and step 5 in the above solution design and write them in the public function file. Each time you need to perform this step, you can directly call the corresponding method in Vue.prototype. The specific implementation logic is: determine whether the current page is the source page or the target page. If it is the target page, use the data passed from the source page. If it is the source page, restore the data before the jump. Add the following method to the public function file utils.js and attach it to Vue.prototype: /** * This method can be used to associate jump related pages* 1. Source page: the data saved in Vuex can be restored to data for use* 2. Target page: the data passed from the source page to Vuex can be put into data for use* 3. After the source page data is restored, delete the corresponding backup data in Vuex and delete the target page identifier saved on the route* @param vm {object} Required current Vue component instance*/ $changeVueData: (vm) => { let tgtParams = store.state.tgtPageParams; let srcParams = vm.$store.state.srcPageParams.slice(-1)[0] || {}; // Get the last element value let name = vm.$route.name; let query = vm.$deepCopyJSON(vm.$route.query); // The deep copy here is because $route.query needs to be updated // Determine whether the current page is the target page or the source page // The judgment condition is to first determine whether the route name is consistent, and then determine whether the attribute value of the specified query is also consistent let isTgtPage = tgtParams.name === name && (tgtParams.checkKeys ? tgtParams.checkKeys.every(key => tgtParams.query[key] === query[key]) : true); let isSrcPage = srcParams.name === name && (srcParams.checkKeys ? srcParams.checkKeys.every(key => srcParams.query[key] === query[key]) : true); // If the current page is the target page if (isTgtPage) { Object.assign(vm.$data, tgtParams.data || {}); // Update the data passed from the source page to the data() of the current page so that the page can query it.} // If the current page is the source page if (isSrcPage) { Object.assign(vm.$data, srcParams.data || {}); // Update the data saved before the jump to the data() of the current page so that the page can be restored store.commit('popSourcePage'); // Delete the last data item of srcPageParams // After the source page associated jump logic is completed, clear the target page identifier on the current page route to prevent problems with refreshing the page delete query.tgtPageName; vm.$router.push({ name, query }); } }, Back to previous page buttonIn order to use the associated jump function more conveniently, the return to previous page button is encapsulated into a component. The specific implementation code is as follows: // back-button.vue <template> <button class="primary-btn return-btn" v-if="showBackBtn" @click="backFn"> <i class="return-icon"></i>{{ backText }} </button> </template> <script> export default { name: 'back-button', props: { // Return to the text of the previous page backText: { type: String, default: () => 'Previous step' }, // Function to return to the previous page backFn: { type: Function, default: () => {} } }, data() { return { showBackBtn: false, }; }, mounted() { this.setBackBtnShow(); }, activated() { this.setBackBtnShow(); }, methods: { // Update the status of the button to return to the previous page setBackBtnShow() { this.$nextTick(() => { let srcPage = this.$store.state.srcPageParams.slice(-1)[0]; this.showBackBtn = Boolean(srcPage && Object.keys(srcPage).length > 0); }); }, }, }; </script> <style scoped lang="scss"> </style> Fault ToleranceConsidering that during the process of association jump, the user may suddenly interrupt or refresh the page and other abnormal operations, some fault tolerance mechanisms are designed: // Root component App.vue /*...code omitted...*/ watch: // Listen, execute when the route changes $route(to, from) { // If it is neither the source page nor the target page, clear the data saved in Vuex // Prevent switching menus or performing other operations during the associated jump, resulting in residual data from the last associated jump in Vuex if (!to.query.srcPageName && !to.query.tgtPageName) { this.$store.commit('clearTargetPage'); this.$store.commit('clearSourcePage'); } }, }, /*...code omitted...*/ Usage ExamplesAccording to the above scheme design part steps: Step 1 and step 5, enter page A, the logic is on the same page, the code is as follows: // Page A.vue /*...code omitted...*/ mounted() { vm = this; vm.$changeVueData(vm); // Jump to related pages. Each time you enter a page, you must execute the $changeVueData function. For specific usage, refer to the comment of the calling method. vm.ready(); }, /*...code omitted...*/ Step 2, jump from page A to page B, the code is as follows: // Page A.vue /*...code omitted...*/ methods: { // Jump to page B goUserSituation: function (name) { let srcParams = { name: vm.$route.name, query: vm.$route.query }; let tgtParams = { name: 'user-situation', data: { checkedSystem: name } }; vm.$goTargetPage(srcParams, tgtParams); }, }, /*...code omitted...*/ Step 3, enter page B, the code is as follows: // Page B.vue /*...code omitted...*/ mounted() { vm = this; vm.$changeVueData(vm); // Jump to related pages. Each time you enter a page, you must execute the $changeVueData function. For specific usage, refer to the comment of the calling method. vm.ready(); }, /*...code omitted...*/ Step 4, return to page A, the code is as follows: // Page B.vue /*...code omitted...*/ <template> <div> <backButton :backFn="$goSourcePage"></backButton> /*...code omitted...*/ </div> </template> /*...code omitted...*/ SummarizeThis article introduces in detail the implementation of the multi-level jump (page drill-down) function of associated pages. The core idea is to save the data of the associated jump source page and target page through VUEX global state management. Before the jump, the required data is saved. When jumping to the target page, the data required by the target page is obtained from VUEX. When jumping back to the source page, the data of the source page is restored from VUEX. Encapsulating these key actions into common methods and components not only unifies the associated page jump methods of each project, but also improves the quality of the code and is more conducive to later maintenance. In addition, only part of the fault tolerance part is written in the article. If you need to continue to improve this function in the future, you can improve the fault tolerance part. This is the end of this article about Vue's implementation of multi-level jump (page drill-down) function for related pages. For more relevant Vue related page multi-level jump 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:
|
<<: Detailed explanation of count(), group by, order by in MySQL
>>: Install and configure MySQL under Linux
Table of contents Problem scenario: Solution: 1. ...
Currently implemented are basic usage, clearable,...
Table of contents 1. Component Introduction 2. So...
Server Information Management server: m01 172.16....
1. Introduction Oracle has released MySQL 8.0GA. ...
introduction In recent years, the call for TypeSc...
Table of contents 1. Check the number of Linux bi...
content Use scaffolding to quickly build a node p...
B-tree is a common data structure. Along with him...
Preface For file or directory permissions in Linu...
This article takes the deployment of Spring boot ...
Preface Crond is a scheduled execution tool under...
If every company wants to increase its user base,...
Preface I recently learned Linux, and then change...
Effect: <div class="imgs"> <!-...