【Vue】Re17 Router 第四部分(参数传递,守卫函数)
一、案例搭建
新建Profile组件

组件写好内容后配置路由
{
path : '/profile',
component : () => import('../components/Profile')
}
二、参数配置
App.vue配置profile
我们可以使用对象对to的url进行封装
path属性就是url
query属性就是我们的请求数据【给地址的请求参数】
<template>
<div id="app">
<router-link to="/home" tag="button" >去首页</router-link>
<router-link to="/about" tag="button" >去关于</router-link>
<router-link :to="/user/+username" tag="button" >用户管理</router-link>
<router-link :to="ppp" tag="button" >profile</router-link>
<!-- <button @click="toHome">首页</button>-->
<!-- <button @click="toAbout">关于</button>-->
<router-view></router-view>
</div>
</template> <script>
export default {
name: 'App',
data() {
return {
username : 'aaa',
ppp : {
path : '/profile',
query : {
name : 'aaa',
age : 22,
gender : true
}
}
}
}
// methods : {
// toHome () {
// this.$router.push('/home');
// },
// toAbout () {
// this.$router.push('/about');
// }
// }
}
</script> <style>
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>
可以看到参数这样传递过来了

如果要取出请求参数,则可以这样:
写在方法里面获取,记得先从this对象引用
<template>
<div>
<h3>Profile-Component</h3>
<p>
profile component content ... <br>
name -> {{$route.query.name}} <br>
age -> {{$route.query.age}} <br>
gender -> {{$route.query.gender}}
</p>
</div>
</template> <script>
export default {
name: "Profile"
}
</script> <style scoped> </style>
路由的代码写法:
<template>
<div id="app">
<router-link to="/home" tag="button" >去首页</router-link>
<router-link to="/about" tag="button" >去关于</router-link>
<router-link :to="/user/+username" tag="button" >用户管理</router-link>
<!-- <router-link :to="ppp" tag="button" >profile</router-link>-->
<button @click="toProfile" >profile</button>
<!-- <button @click="toHome">首页</button>-->
<!-- <button @click="toAbout">关于</button>-->
<router-view></router-view>
</div>
</template> <script>
export default {
name: 'App',
data() {
return {
username : 'aaa',
ppp : {
path : '/profile',
query : {
name : 'aaa',
age : 22,
gender : true
}
}
}
},
methods : {
toHome () {
this.$router.push('/home');
},
toAbout () {
this.$router.push('/about');
},
toProfile() {
this.$router.push(this.ppp);
}
} }
</script> <style>
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>
三、$route & $router的区别?
router是全局路由控制器对象
route是当前活跃的路由对象,是routes属性数组中的一个元素,也可以是router对象内部的一个属性对象
https://www.bilibili.com/video/BV15741177Eh?p=113
四、导航守卫方法
1、回顾Vue实例的生命周期
created() {
// todo ... Vue创建时调用此函数,
},
mounted() {
// todo ... Vue实例开始挂载虚拟DOM时调用此函数
},
updated() {
// todo ... ... 组件数据发生更新时调用
},
点击不同的子组件,更换标签文本的需求:
每一次访问不同的组件都会调用created函数
所以可以:
created() {
// todo ... Vue创建时调用此函数,
document.title = '关于-About';
},
但是这样N个组件就要写N次了,都是路由跳转的方式进行的
那么只要在监听路由跳转,在那个时刻把title组件的某一个数据就行了
import Vue from 'vue';
import Router from 'vue-router'; Vue.use(Router); /* 方式一 */
const Home = resolve => {
require.ensure(
['../components/Home.vue'],
() => resolve(require('../components/Home.vue'))
)
}
/* 方式二 */
const About = resolve => {
require(['../components/About.vue'],resolve);
}
/* 方式三 */
const User = () => import('../components/User.vue'); const News = () => import('../components/home/News');
const Messages = () => import('../components/home/Messages'); const routerList = [
/* 重定向首页路由配置 */
{
path : '', /* 缺省值默认指向 '/' */
redirect : '/home',
},
{
path : '/home', /* 为什么这里是path不是url? 因为完整的url还包括 项目根url(协议头 + 域名(或者IP地址) + 端口号 + 项目根名称路径(可选)) */
name : 'home', /* 名字可以不加 */
component : Home, /* 使用懒加载后component这里高亮显示 */
children : [ /* 设置子路由 */
{
path : '', /* 这个缺省默认/home */
redirect : 'news',
},
{
path : 'news', /* 等同于 /home + /news = /home/news 这里不需要再加斜杠了 */
component : News,
meta : {
title : '新闻列表 - News'
}
},
{
path : 'messages',
component : Messages,
meta : {
title : '消息列表 - Messages'
}
}
],
meta : {
title : '首页 - Home'
}
},
{
path : '/about',
name : 'about',
component : About,
meta : {
title : '关于 - About'
}
},
{
path : '/user/:username', /* 动态路径:冒号+字符 */
name : 'user',
component : User,
meta : {
title : '用户 - User'
}
},
{
path : '/profile',
component : () => import('../components/Profile'),
meta : {
title : '档案 - Profile'
}
}
]
const router = new Router({
routes : routerList,
mode : 'history',
}); /* 在创建实例后调用 */
router.beforeEach((to, from, next) => {
// 调用这个方法以为着重写,一定要调用 next方法, 否则路由无法跳转 // from 来自于哪个路由对象
// to 跳转到哪个路由对象 // 按照案例的需求,就可以这样设置了 route就是一个个routes的元素对象
// 可以设置一个meta属性对象,放入title属性和对应的值即可
document.title = to.meta.title; // 但是子路由没有命名的话会早曾undefined显示,因为meta属性为空
// 解决方案 document.title = to.matched[0].meta.title; // 跳转要放在最后,不然是跳完了再执行标签的文本更换
next();
});
export default router;
afterEach守卫方法:
router.afterEach((to, from) => {
// 因为是跳转之后调用,自然而然的不需要next函数了
// TODO ... ...
});
上述的两个都是全局守卫方法,在路由配置中重写并调用
五、局部路由守卫
详细资料:
https://router.vuejs.org/guide/advanced/navigation-guards.html
You can define beforeEnter guards directly on a route's configuration object:
const router = new VueRouter({
routes: [
{
path: '/foo',
component: Foo,
beforeEnter: (to, from, next) => {
// ...
}
}
]
})
In-Component Guards
Finally, you can directly define route navigation guards inside route components (the ones passed to the router configuration) with the following options:
beforeRouteEnterbeforeRouteUpdatebeforeRouteLeave
const Foo = {
template: `...`,
beforeRouteEnter (to, from, next) {
// called before the route that renders this component is confirmed.
// does NOT have access to `this` component instance,
// because it has not been created yet when this guard is called!
},
beforeRouteUpdate (to, from, next) {
// called when the route that renders this component has changed.
// This component being reused (by using an explicit `key`) in the new route or not doesn't change anything.
// For example, for a route with dynamic params `/foo/:id`, when we
// navigate between `/foo/1` and `/foo/2`, the same `Foo` component instance
// will be reused (unless you provided a `key` to `<router-view>`), and this hook will be called when that happens.
// has access to `this` component instance.
},
beforeRouteLeave (to, from, next) {
// called when the route that renders this component is about to
// be navigated away from.
// has access to `this` component instance.
}
}
【Vue】Re17 Router 第四部分(参数传递,守卫函数)的更多相关文章
- 四 Vue学习 router学习
index.js: 按需加载组件: const login = r => require.ensure([], () => r(require('@/page/login')), 'log ...
- vue之router钩子函数
模块一:全局导航钩子函数 1.vue router.beforeEach(全局前置守卫) beforeEach的钩子函数,它是一个全局的before 钩子函数, (before each)意思是在 每 ...
- Vue的路由动态重定向和导航守卫
一.重定向 重定向也是通过 routes 配置来完成,下面例子是从 /a 重定向到 /b: const router = new VueRouter({ routes: [ { path: '/a', ...
- 详解vue 路由跳转四种方式 (带参数)
详解vue 路由跳转四种方式 (带参数):https://www.jb51.net/article/160401.htm 1. router-link ? 1 2 3 4 5 6 7 8 9 10 ...
- Vue学习笔记-Vue.js-2.X 学习(四)===>脚手架Vue-CLI(基本工作和创建)
(五) 脚手架Vue-CLI 一 Vue-CLI前提(nodejs和webpack) 二 Vue学习-nodejs按装配置,Node.js 就是运行在服务端的 JavaScript. 1. 去nod ...
- 三、vue之router
三.vue之router 此时vue的脚手架.创建项目已经完成. ... vue的运行流程 index.html-->main.js-->App.vue-->router/index ...
- Vue中router两种传参方式
Vue中router两种传参方式 1.Vue中router使用query传参 相关Html: <!DOCTYPE html> <html lang="en"> ...
- Vue基础系列(四)——Vue中的指令(上)
写在前面的话: 文章是个人学习过程中的总结,为方便以后回头在学习. 文章中会参考官方文档和其他的一些文章,示例均为亲自编写和实践,若有写的不对的地方欢迎大家和我一起交流. VUE基础系列目录 < ...
- vue 中router.go;router.push和router.replace的区别
vue 中router.go:router.push和router.replace的区别:https://blog.csdn.net/div_ma/article/details/79467165 t ...
- 【vue】 router.beforeEach
import store from '@/store' const Vue = require('vue') const Router = require('vue-router') Vue.use( ...
随机推荐
- python中datetime的常用操作
datetime是用于处理日期和时间的模块,一些常用的操作可通过提供的基本函数实现.引入模块--import datetime. 1.datetime转字符串--strftime()函数 有两种写法: ...
- ETL工具-nifi干货系列 第六讲 处理器JoltTransformJSON
1.处理器作用 使用Jolt转换JSON数据为其他结构的JSON,成功的路由到'success',失败的'failure'.处理JSON的实用程序不是基于流的,因此大型JSON文档转换可能会消耗大量内 ...
- 推荐一款免费的终端工具-Windterm
Windterm 提到SSH终端工具,大家一定会想到putty.xshell.MobaXterm这些产品.但是当我使用Windterm后,我彻底改变了我对之前使用SSH终端工具的认知,其强大的能力,彻 ...
- docker registry 镜像源
修改文件 /etc/docker/daemon.json vi /etc/docker/daemon.json添加以下内容后,重启docker服务: { "registry-mirrors& ...
- Winform绘制圆形图
1 private void Form_Load(object sender, EventArgs e) 2 { 3 PictureBox pic = new PictureBox(); 4 pic. ...
- redis实战技巧
1.分析key大小 [root@db-51 ~]#redis-cli -h 10.0.0.51 -p 6380 --bigkeys # Scanning the entire keyspace to ...
- 如果redis没有设置expire,他是否默认永不过期
如果redis没有设置expire,他是否默认永不过期?默认是的 通过EXPIRE key seconds 命令来设置数据的过期时间.返回1表明设置成功,返回0表明key不存在或者不能成功设置过期时间 ...
- Lakehouse 还是 Warehouse?(2/2).md
这篇博文包括 Onehouse 首席执行官 Vinoth Chandar 于 2022 年 3 月在奥斯汀数据委员会发表的重要演讲的后半部分.本文是第 2 部分,比较了架构的功能和性价比特征.最后,它 ...
- Java常用的十大开源工具类库总结
以下是个人总结的Java常用的十大开源工具类库,根据具体需求和项目,可以选择合适的工具类库来提高开发效率.1. Apache Commons:Apache Commons是一个开源的工具类库,提供了大 ...
- arm-gcc 命名规则
背景 在 Ubuntu中交叉编译裸机程序的时候,注意到了这个问题:因此对此作为一个总结. 命名规则 交叉编译工具链的命名规则为:arch [-vendor] [-os] [-(gnu)eabi] ar ...