Home Web Front-end Vue.js How to use routing to pass and receive parameters in Vue?

How to use routing to pass and receive parameters in Vue?

Jul 22, 2023 pm 11:57 PM
Parameter passing vue routing Parameter reception

How to use routing to pass and receive parameters in Vue?

Vue is a popular JavaScript framework for building modern, responsive web applications. In Vue, routing is an important concept, which is used to manage navigation and jumps between web pages. During the development process, we often need to pass data between different routes. This article will introduce how to use routing to pass and receive parameters in Vue, and provide corresponding code examples.

  1. Route parameter passing
    In Vue, we can use route parameter passing to pass data from one route to another. There are several ways to achieve this:

1.1 Query parameters
Query parameters are parameters in the routing URL, in the form of ?key=value. We can use the query attribute of the $route object to get the passed parameters. The following is an example of using query parameters to pass parameters:

In the sender route, we can use the $route.router.push method to jump to the receiver route and pass the parameters:

1

2

3

4

5

6

7

this.$router.push({

  path: '/receiver',

  query: {

    name: 'John',

    age: 25

  }

});

Copy after login

In the receiver route, we can use $route.router.query to get the passed parameters:

1

2

console.log(this.$route.query.name); // John

console.log(this.$route.query.age); // 25

Copy after login

1.2 Dynamic routing
Dynamic routing uses parameters as part of the URL, in the form /:param. We can use $route.params to get the passed parameters. The following is an example of using dynamic routing to pass parameters:

In the sender route, we can use the $route.router.push method to jump to the receiver route and pass the parameters:

1

2

3

this.$router.push({

  path: `/receiver/${this.name}/${this.age}`

});

Copy after login

In the receiver route, we can use $route.params to get the passed parameters:

1

2

console.log(this.$route.params.name); // John

console.log(this.$route.params.age); // 25

Copy after login
  1. Route receiving parameters
    After receiving the parameters passed by the route, we can processed and used. The following is an example:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

<template>

  <div>

    <h1>Welcome to the receiver page!</h1>

    <p>Name: {{ name }}</p>

    <p>Age: {{ age }}</p>

  </div>

</template>

 

<script>

export default {

  data() {

    return {

      name: '',

      age: ''

    }

  },

  mounted() {

    this.name = this.$route.query.name;

    this.age = this.$route.query.age;

    // 或者 this.name = this.$route.params.name;

    //     this.age = this.$route.params.age;

  }

};

</script>

Copy after login

The above example shows how to use the $route object in the receiver component to obtain the query parameters or dynamic parameters passed by the route. We assign the passed parameters to the data attribute of the component for use in the template.

Summary
It is very simple to use routing to pass parameters and receive parameters in Vue. Through query parameters or dynamic routing, we can pass data between routes and have it processed and used in the receiver component. Whether it is query parameters or dynamic routing, the passed parameters can be obtained through the $route object. I hope this article can help you better understand and use the routing parameter passing function in Vue.

The above is the detailed content of How to use routing to pass and receive parameters in Vue?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Best practices for optimizing Golang function parameter passing performance Best practices for optimizing Golang function parameter passing performance Apr 13, 2024 am 11:15 AM

In order to optimize Go function parameter passing performance, best practices include: using value types to avoid copying small value types; using pointers to pass large value types (structures); using value types to pass slices; and using interfaces to pass polymorphic types. In practice, when passing large JSON strings, passing the data parameter pointer can significantly improve deserialization performance.

How to use routing to implement international multi-language switching in Vue? How to use routing to implement international multi-language switching in Vue? Jul 22, 2023 pm 12:17 PM

How to use routing to implement international multi-language switching in Vue? When developing a multilingual website, one of our important needs is to be able to switch website content according to the language selected by the user. Vue.js is a popular JavaScript framework. By using the VueRouter plug-in, we can easily implement routing functions. In this article, I will introduce how to use routing to implement international multi-language switching in Vue. First, we need to install the VueRouter plugin. Can pass np

Research on parameter passing methods in Go language Research on parameter passing methods in Go language Apr 03, 2024 pm 02:48 PM

In the Go language, there are two main ways to pass function parameters: value passing: passing a copy of the variable will not affect the original variable in the calling code. Pointer passing: Passing the address of a variable allows the function to directly modify the original variable in the calling code.

What is the parameter passing method for PHP functions? What is the parameter passing method for PHP functions? Apr 10, 2024 am 11:06 AM

There are two ways to pass parameters in PHP: call by value (the parameter is passed as a copy of the value, modification within the function does not affect the original variable) and passing by reference (the address of the parameter is passed, modification within the function will affect the original variable), when the original variable needs to be modified Use reference passing when calculating the shopping cart total price, which requires reference passing to calculate correctly.

How to pass parameters to PHP function? How to pass parameters to PHP function? Apr 10, 2024 pm 05:21 PM

PHP functions can pass values ​​through parameters, which are divided into pass by value and pass by reference: pass by value: modification of parameters within the function will not affect the original value; pass by reference: modification of parameters within the function will affect the original value. In addition, arrays can also be passed as parameters for operations such as calculating the sum of data.

Detailed explanation of C++ function parameters: Performance optimization of parameter passing in parallel programming Detailed explanation of C++ function parameters: Performance optimization of parameter passing in parallel programming Apr 27, 2024 pm 02:09 PM

In a multi-threaded environment, function parameter passing methods are different, and the performance difference is significant: passing by value: copying parameter values, safe, but large objects are expensive. Pass by reference: Passing by reference is efficient, but function modifications will affect the caller. Pass by constant reference: Pass by constant reference, safe, but restricts the function's operation on parameters. Pass by pointer: Passing pointers is flexible, but pointer management is complex, and dangling pointers or memory leaks may occur. In parallel summation, passing by reference is more efficient than passing by value, and passing by pointer is the most flexible, but management is complicated.

Golang formal parameter requirements guide: parameter passing methods, value passing and address passing Golang formal parameter requirements guide: parameter passing methods, value passing and address passing Mar 02, 2024 pm 05:18 PM

Guide to Golang formal parameter requirements: parameter passing methods, value passing and address passing. In the process of learning the Golang programming language, it is very important to understand the parameter passing methods and the concepts of value passing and address passing. This article will delve into the formal parameter requirements in Golang, including the difference between parameter passing methods, value passing and address passing, and provide specific code examples to help readers better understand. 1. Parameter passing methods In Golang, there are two methods of parameter passing for functions: passing by value and passing by address. Pass by value (pass a copy): When the function is called, the actual

Detailed explanation of C++ function parameters: Comparison of parameter passing methods of different pointer types Detailed explanation of C++ function parameters: Comparison of parameter passing methods of different pointer types Apr 27, 2024 am 09:27 AM

There are three ways to pass pointer parameters in C++: passing by value, passing by reference, and passing by address. Passing by value copies the pointer without affecting the original pointer; passing by reference allows the function to modify the original pointer; passing by address allows the function to modify the value pointed to by the pointer. Choose the appropriate parameter transmission method according to your needs.

See all articles