赞
踩
目录
首先简单来说明一下$router
和$route
的区别
可以理解为:
this.$router 相当于一个全局的路由器对象,包含了很多属性和对象(比如 history 对象),任何页面都可以调用其 push(), replace(), go() 等方法。
this.$route 表示当前路由对象,每一个路由都会有一个 route 对象,是一个局部的对象,可以获取对应的 name, path, params, query 等属性。
vue-router传递参数分为两大类
声明式导航和编程式导航
共同点:
都能进行导航,都可以触发路由,实现组件切换
区别:
写法不一样,声明式导航是写在组件的template中,通过router-link来触发,编程式导航写在js函数中,通过this.$router.push(xxx)来触发路径
1.this.$router.push()
描述:跳转到不同的url,但这个方法回向history栈添加一个记录,点击后退会返回到上一个页面。
2.this.$router.replace()
描述:同样是跳转到指定的url,但是这个方法不会向history里面添加新的记录,点击返回,会跳转到上上一个页面。上一个记录是不存在的。
字符串:字符串的方式是直接将路由地址以字符串的方式来跳转,这种方式很简单但是不能传递参数:
this.$router.push("home");
对象:想要传递参数主要就是以对象的方式来写,分为两种方式:命名路由、查询参数,下面分别说明两种方式的用法和注意事项。
命名路由的前提就是在注册路由的地方需要给路由命名如:
使用方法如下:
this.$router.push({ name: 'news', params: { userId: 123 }})
代码如下:
HelloWorld.vue
- <template>
- <div class="hello">
- <h1>{{ msg }}</h1>
- <button @click="routerTo">click here to news page</button>
- </div>
- </template>
-
- <script>
- export default {
- name: 'HelloWorld',
- data () {
- return {
- msg: 'Welcome to Your Vue.js App'
- }
- },
- methods:{
- routerTo(){
- this.$router.push({ name: 'news', params: { userId: 123 }});
- }
- }
- }
- </script>
-
- <style>
- </style>
News.vue 接受传递的参数:
- <template>
- <div>
- 接受到的userId: {{this.$route.params.userId}}
- </div>
- </template>
运行效果如下:
如果path中不传入参数名,那么页面刷新后,本应出现的参数123就不见了,并且浏览器URL中的也不会有参数,如下:
查询参数其实就是在路由地址后面带上参数和传统的url参数一致的,传递参数使用query而且必须配合path来传递参数而不能用name,目标页面接收传递的参数使用query。
注意:和name配对的是params,和path配对的是query
使用方法如下:
this.$router.push({ path: '/news', query: { userId: 123 }});
代码如下:
- <template>
- <div class="hello">
- <h1>{{ msg }}</h1>
- <button @click="routerTo">click here to news page</button>
- </div>
- </template>
-
- <script>
- export default {
- name: 'HelloWorld',
- data () {
- return {
- msg: 'Welcome to Your Vue.js App'
- }
- },
- methods:{
- routerTo(){
- this.$router.push({ path: '/news', query: { userId: 123 }});
- }
- }
- }
- </script>
接收参数如下:
- <template>
- <div>
- 接受到的userId: {{this.$route.query.userId}}
- </div>
- </template>
声明式的导航和编程式的一样,这里就不在过多介绍,给几个例子大家对照编程式理解,例子如下:
<router-link to="news">click to news page</router-link>
<router-link :to="{ name: 'news', params: { userId: 1111}}">click to news page</router-link>
<router-link :to="{ path: '/news', query: { userId: 1111}}">click to news page</router-link>
运行效果同上,就不录屏了
此外,vue路由跳转打开新窗口的两种方式:
方式一:
- <router-link target="_blank" :to="{ name: 'router-name', query: {id: 1} }">
- </router-link>
方式二:
- let routeData = this.$router.resolve({ path: '/home', query: { id: 1 } });
- window.open(routeData.href, '_blank');
路由嵌套:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。