How to implement vue page jump

How to implement vue page jump

1. this.$router.push()

1. Vue

<template>
  <div id='test'>
    <button @click='goTo()'>Click to jump 4</button>
  </div>
</template>

2. Script

// Pass parameters before jumping to the previous page:
goTo(item) {
  //The data in storageData is used to jump to the next page, and when returning, it can return to the page before the jump let storageData = {
    searchWords: this.keyWord,
    pageSize: this.paging.pageSize,
    pageNo: this.paging.currentPage 
  };
  //The data in data is used to apply the data in this page to the next page through the jump function, similar to the parent-child component value transfer let data = {
    type: item.srcType,
    tableName: item.tableName,
    name: item.datasourceName,
    tableId: item.tableId,
    id: item.datasourceId,
  };
  //Push all the data that will be used in the next page to $router this.$router.push({
    //name indicates the front-end access path of the resource after the jump, query is used to store the data to be used, where page is the name of this page,
    name: 'onlineSearch',
    query: {targetData: data ,storageData,
      page:'search',
      isBackSelect: true,
      goBackName: 'dataSearch'
    }
  })    
}

3. Get the parameter value of the previous page in the page after jumping

//Get the parameters of the page after jumping:
mounted() {
  // Check whether the parameters have been passed to the page after the jump. If passed, call console.log(this.$route.query.targetData;) as required
}

4. Return to the page before the jump from the page after the jump

//Write the return function into methods goBackSheet() {
  if(this.$route.query.goBackName === 'dataSearch'){
    this.$router.push({
      name: this.pageName,
      query: {
        storageData: this.$route.query.storageData,
        isBackSelect: true,
      }
    });
  }
}

2. Router-link jump

1. Specify the target address through the to attribute

Query is equivalent to a get request. When the page jumps, you can see the request parameters in the address bar;

Query refresh will not lose the data in the query;

The query should be introduced using path.

params is equivalent to a post request, and the parameters will no longer be displayed in the address bar;

Refreshing params will lose the data in params;

Params should be introduced by name.

<!-- Named Routes -->
<router-link :to="{ name: 'user', params: { userId: 123 }}" @click.native='goTo'>User</router-link>

<!-- With query parameters, the result below is /register?plan=private -->
<router-link :to="{ path: 'register', query: { plan: 'private' }}" @click.native='goTo'>Register</router-link>

2. Redirect page

watch:{
   $route(to,from){
      //Refresh the page this.$router.go(1);
   }  
}

The above is the detailed content of the implementation method of vue page jump. For more information about vue page jump, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Several methods of vue jump page (recommended)
  • Detailed explanation of four ways of vue routing jump (with parameters)
  • How to implement Vue click button route jump to specified page

<<:  Example of using js to natively implement year carousel selection effect

>>:  Complete steps to use mock.js in Vue project

Recommend

Detailed installation and configuration tutorial of MySQL 5.7 under Win10

1. Unzip MySQL 5.7 2. Create a new configuration ...

Detailed explanation of HTML table inline format

Inline format <colgroup>...</colgroup>...

Several navigation directions that will be popular in the future

<br />This is not only an era of information...

Xftp download and installation tutorial (graphic tutorial)

If you want to transfer files between Windows and...

How to strike a balance between ease of use and security in the login interface

Whether you are a web designer or a UI designer, ...

Implementation of whack-a-mole game in JavaScript

This article shares the specific code for JavaScr...

CSS achieves the effect of two elements blending (sticky effect)

I remember that a few years ago, there was an int...

Kill a bunch of MySQL databases with just a shell script like this (recommended)

I was woken up by a phone call early in the morni...

CSS multi-column layout solution

1. Fixed width + adaptive Expected effect: fixed ...

Solve the problem of margin merging

1. Merge the margins of sibling elements The effe...

Summary of the Differences between SQL and NoSQL

Main differences: 1. Type SQL databases are prima...

JavaScript canvas to achieve code rain effect

This article shares the specific code for canvas ...

jQuery implements the drop-down box for selecting the place of residence

The specific code for using jQuery to implement t...

A brief discussion on JavaScript scope

Table of contents 1. Scope 1. Global scope 2. Loc...