vue中this.$router.push()路由传值和获取的两种常见方法

Posted toonezhr

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue中this.$router.push()路由传值和获取的两种常见方法相关的知识,希望对你有一定的参考价值。

1、路由传值   this.$router.push()

(1) 想要导航到不同的URL,使用router.push()方法,这个方法会向history栈添加一个新纪录,所以,当用户点击浏览器后退按钮时,会回到之前的URL

(2)当点击 <router-link> 时,这个方法会在内部调用,即点击 <router-link :to="..."> 等同于调用 router.push(...)

  a)      声明式:<router-link :to="...">

  b)      编程式:router.push(...)

  c)      该方法的参数可以是一个字符串路径,或者一个描述地址的对象。  

// 字符串
router.push(home)
 
// 对象
this.$router.push({path: /login?url= + this.$route.path});
 
// 命名的路由
router.push({ name: user, params: { userId: 123 }})
 
// 带查询参数,变成/backend/order?selected=2
this.$router.push({path: /backend/order, query: {selected: "2"}});
 
// 设置查询参数
this.$http.post(v1/user/select-stage, {stage: stage})
      .then(({data: {code, content}}) => {
            if (code === 0) {
                // 对象
                this.$router.push({path: /home});
            }else if(code === 10){
                // 带查询参数,变成/login?stage=stage
                this.$router.push({path: /login, query:{stage: stage}});
           }
});
 
// 设计查询参数对象
let queryData = {};
if (this.$route.query.stage) {
    queryData.stage = this.$route.query.stage;
}
if (this.$route.query.url) {
    queryData.url = this.$route.query.url;
}
this.$router.push({path: /my/profile, query: queryData});

技术分享图片

2、获取参数的两种常用方法:params和query

(1)由于动态路由也是传递params的,所以在 this.$router.push() 方法中path不能和params一起使用,否则params将无效。需要用name来指定页面。

及通过路由配置的name属性访问

技术分享图片技术分享图片

this.$router.push({name:"menuLink",params:{alert:"页面跳转成功"}})

(2)在目标页面通过this.$route.params获取参数:

<p>提示:{{this.$route.params.alert}}</p>

(3)在目标页面通过this.$route.query 获取参数

//传值
this.$router.push({path:"/menLink",query:{alert:"页面跳转成功"}})

//用query获取值
<p>提示:{{this.$route.query.alert}}</p>

 

两种方式的区别是query传参的参数会带在url后边展示在地址栏,params传参的参数不会展示到地址栏。需要注意的是接收参数的时候是route而不是router。两种方式一一对应,名字不能混用

 

以上是关于vue中this.$router.push()路由传值和获取的两种常见方法的主要内容,如果未能解决你的问题,请参考以下文章

vue中this.$router.push()路由传值和获取的两种常见方法

Vue路由this.$router.push跳转页面不刷新

vue路由

vue路由跳转 返回上一级 this.$router.go(-1) 和返回到指定页面this.$router.push('/home')

Vue路由跳转

vue 路由配置