Home > Web Front-end > JS Tutorial > body text

Detailed explanation of the steps to dynamically set routing parameters in Vue

php中世界最好的语言
Release: 2018-04-27 09:22:31
Original
2572 people have browsed it

This time I will bring you Vue dynamic settings Routing parameters Detailed explanation of the steps, what are the precautions for Vue dynamically setting routing parameters, the following is a practical case, let's take a look.

Routing parameters can be dynamically set in vue:

1. Use this.$router.go(), with js history.go () Usage is always, forward 1, backward -1, current page: 0

Note that when using go, there must be an access history record

Case:

<template>
  <p> 
    <button @click="goht">后退<button> <br/>
    <button @click="goqj">前进<button> <br/>
    <button @click="gosx">刷新当前<button>
  </p>
 </template>
 <script>
  export default {
    methods: {
     goht(){
       this.$router.go(-1);
     },
     goqj(){
        this.$router.go(1);
     },
     gosx(){
       this.$router.go(0); //或者 this.$router.go(); 
     }
    }
  }
 </script>
Copy after login

2. Use push call:

Case

<template>
  <p>
     <button @click="pageA">去A页面</button> <br/>
     <button @click="pageB">去B页面</button> <br/>
  </p>
</template>
<script> 
 exprot default {
  methods: {
     pageA(){
        //去路由A页面,字符串形式只能是path,类似to="path"
       this.$router.push('/RouterA'); 
     },
     pageB(){
        //去路由B页面,数组形式,类似 :to="{}"
       this.$router.push(
         {
          name: 'RouterB',
          query: {'name': 'name1', title: 'title1'}
          //,params:{'name': 'name2', title: 'title2'}
         }
       );
     }
   }
 }
</script>
Copy after login

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to php Chinese website Other related articles!

Recommended reading:

How to adapt images in WeChat applet to model height

How to use jquery to set the new model The window opens an external link

jquery image preview according to the specified ratio when uploading (with code)

The above is the detailed content of Detailed explanation of the steps to dynamically set routing parameters in Vue. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!