【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( ...
随机推荐
- jq data方法
data() 是 jQuery 的方法之一,用于在元素上存储和获取数据.它允许你将任意类型的数据附加到一个或多个元素上,并且可以通过选择器或元素对象来访问和操作这些数据. 代码中,_t.selectB ...
- 一文了解 - -> SpringMVC
一.SpringMVC概述 Spring MVC 是由Spring官方提供的基于MVC设计理念的web框架. SpringMVC是基于Servlet封装的用于实现MVC控制的框架,实现前端和服务端的交 ...
- ELK收集主流应用日志
1.收集nginx日志 学习背景:access.log,error.log目前日志混杂在一个es索引下. 改进filebeat配置 https://www.elastic.co/guide/en/be ...
- Scrapy框架(四)--五大核心组件
scrapy的基本使用我们已经掌握,但是各位心中一定会有些许的疑问,我们在编写scrapy工程的时候,我们只是在定义相关类中的属性或者方法, 但是我们并没有手动的对类进行实例化或者手动调用过相关的方法 ...
- MyBatis 的好处是什么?
a.MyBatis 把 sql 语句从 Java 源程序中独立出来,放在单独的 XML 文件中编写,给程序的维护带来了很大便利. b.MyBatis 封装了底层 JDBC API 的调用细节,并能自动 ...
- Spring扩展——Aware接口
Aware接口 在Spring中有许多的Aware接口,提供给应用开发者使用,通过Aware接口,我们可以通过set的方式拿到我们需要的bean对象(包括容器中提供的一些对象,ApplicationC ...
- SM4Utils加解密demo
SM4Utils加解密demo package com.example.core.mydemo.sm4; import cn.org.bjca.utils.SM4Utils; public class ...
- feildconfig
<template> <div style="float:left;width: 100%"> <el-row> <el-col :spa ...
- InvalidOperationException Cannot modify ServiceCollection after application is built .Net6 异常
背景 我用了一个叫Unchase.Swashbuckle.AspNetCore.Extensions的库来加强Swagger的文档,我一般写法是这样的: builder.Services.AddSwa ...
- python selenium使用无头模式执行用例
什么是无头模式? Headless Browser模式是浏览器的无界面状态,即在不打开浏览器界面的情况下使用浏览器. 该模式的好处如下: 1)可以加快web自动化测试的执行时间,对于web自动化测试, ...