【Vue2】Router 路由
1.什么是单页面应用程序
单页面应用程序(英文名: Single Page Application)简称SPA,
顾名思义,指的是一个Web网站中只有唯一-的一-个HTML页面,
所有的功能与交互都在这唯--的一个页面内完成。
结论:在SPA项目中,不同功能之间的切换,要依赖于前端路由来完成!
4.什么是前端路由
通俗易懂的概念: Hash地址与组件之间的对应关系。
5.前端路由的工作方式
① 用户点击了页面.上的路由链接
② 导致了URL地址栏中的Hash值发生了变化
③ 前端路由监听了到Hash地址的变化
④ 前端路由把当前Hash地址对应的组件渲染都浏览器中
6、手写路由案例:
<template>
<div id="app">
<a href="#/index">首页</a> |
<a href="#/movie">电影</a> |
<a href="#/about">关于</a>
<component :is="routerName"></component>
</div>
</template> <script>
import Home from '@/components/Home.vue'
import Movie from '@/components/Movie.vue'
import About from '@/components/About.vue' export default {
name: 'App',
components: {
Home,
Movie,
About
},
data() {
return {
routerName: ''
}
},
created() {
window.onhashchange = () => {
const hash = location.hash
switch (hash) {
case '#/home':
this.routerName = 'Home'
break
case '#/Movie':
this.routerName = 'Movie'
break
case '#/About':
this.routerName = 'About'
break
}
}
},
}
</script> <style lang="less">
#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>
1.什么是vue-router
vue-router是vue.js官方给出的路由解决方案。
它只能结合vue项目进行使用,能够轻松的管理SPA项目中组件的切换。
vue-router的官方文档地址: https://router.vuejs.org/zh/
2.使用Vue-Router步骤
① 安装vue-router包
npm i vue-router@3.5.2 -S
② 创建路由模块
router/index.js
// 导入资源配置
import Vue from 'vue'
import Router from 'vue-router' // 安装Router插件
Vue.use(Router)
// 创建路由实例
const router = new Router() // 导出Router实例
export default router
③ 导入并挂载路由模块
main.js文件中,Vue实例,入参路由实例
import Vue from 'vue'
import App from './App.vue' Vue.config.productionTip = false // ES6 模块导入 如果提供的是一个目录地址,默认导入里面index名称文件
// import router from '@/router/index.js'
import router from '@/router/index.js' new Vue({
render: h => h(App),
router
}).$mount('#app')
④ 声明路由链接和占位符
配置路由和地址的对应关系:
import Vue from 'vue'
import Router from 'vue-router' // 把路由对应的组件和Hash映射起来
import Home from '@/components/Index.vue'
import Movie from '@/components/Movie.vue'
import About from '@/components/About.vue' Vue.use(Router)
// 配置路由列表 path不需要写#号
const routes = [
{ path: '/home', component: Home },
{ path: '/movie', component: Movie },
{ path: '/about', component: About }
]
// 注册到路由实例中
const router = new Router({
routes
}) export default router
更改原来的手写路由分配,App.vue:
改用 router-view占位符标签实现路由分配
<template>
<div id="app">
<a href="#/index">首页</a> |
<a href="#/movie">电影</a> |
<a href="#/about">关于</a>
<router-view></router-view>
</div>
</template>
<script>
export default {
name: 'App'
}
</script> <style lang="less">
#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>
可以使用router-link代替a标签,router-link本身还是使用a标签做的
使用Router-link替换a标签
<router-link to="/index">首页</router-link> |
<router-link to="/movie">电影</router-link> |
<router-link to="/about">关于</router-link>
2.1、懒加载路由
https://www.cnblogs.com/mindzone/p/13909668.html
3、路由重定向问题
新的问题是,进入页面后没有默认页,需要用户自己手动点击,才会跳转
所以需要把首页在进入页面时就路由进来,这个功能可以使用路由重定向来解决:
// 配置路由列表 path不需要写#号
const routes = [
{ path: '/', redirect: '/home' },
{ path: '/home', component: Home },
{ path: '/movie', component: Movie },
{ path: '/about', component: About }
]
4、子路由和子路由占位符
路由配置:
import Vue from 'vue'
import Router from 'vue-router' // 把路由对应的组件和Hash映射起来
import Home from '@/components/Index.vue'
import Movie from '@/components/Movie.vue'
import About from '@/components/About.vue' // 引入子组件
import SubPage1 from '@/components/about/SubPage1.vue'
import SubPage2 from '@/components/about/SubPage2.vue' // 安装Router插件
Vue.use(Router) // 设定路由的配置项
const routes = [
{ path: '/', redirect: '/index'},
{ path: '/index', component: Home },
{
path: '/about',
component: About,
children: [
// 子组件不能写斜杠开头, router会默认视为第一层级的规则来分配
{ path: 'tab1', component: SubPage1 },
{ path: 'tab2', component: SubPage2 }
]
}
] const router = new Router({
routes
}) export default router
在About组件中编写对应的占位符:
<template>
<div>
<h3>关于 组件</h3>
<p>
<router-link to="/about/tab1" >子页面1</router-link>
<router-link to="/about/tab2" >子页面2</router-link>
</p>
<router-view></router-view>
</div>
</template> <script>
export default {
name: 'About'
}
</script>
5、默认子路由或者重定向
import Vue from 'vue'
import Router from 'vue-router' // 把路由对应的组件和Hash映射起来
import Home from '@/components/Index.vue'
import Movie from '@/components/Movie.vue'
import About from '@/components/About.vue' // 引入子组件
import SubPage1 from '@/components/about/SubPage1.vue'
import SubPage2 from '@/components/about/SubPage2.vue' // 安装Router插件
Vue.use(Router) // 设定路由的配置项
const routes = [
{ path: '/', redirect: '/index'},
{ path: '/index', component: Home },
{
path: '/about',
component: About,
// 方式一:使用重定向配置
redirect: '/about/tab1',
children: [
// 方式二:使用默认子路由,省略路径实现
// { path: '', component: SubPage1 },
{ path: 'tab1', component: SubPage1 },
{ path: 'tab2', component: SubPage2 }
]
}
] const router = new Router({
routes
}) export default router
6、动态路由实现
类似Rest风格,根据参数动态渲染页面的内容,提高页面的复用性
<template>
<div id="app">
<router-link to="/movie/1">电影1</router-link> |
<router-link to="/movie/2">电影2</router-link> |
<router-link to="/movie/3>电影3</router-link>
<hr>
<router-view></router-view>
</div>
</template> <script>
export default {
name: 'App',
}
</script> <style lang="less">
#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>
路由配置时,声明一个动态路径参数标记:
在vue-router中使用英文的冒号(:) 来定义路由的参数项。
import Vue from 'vue'
import Router from 'vue-router' // 把路由对应的组件和Hash映射起来
import Movie from '@/components/Movie.vue' // 安装Router插件
Vue.use(Router) // 设定路由的配置项
const routes = [
/**
* 动态参数配置
*
* props: true 开启props属性传参
*/
{ path: '/movie/:id', component: Movie },
] const router = new Router({
routes
}) export default router
组件会把路由的路径参数封装成对象获取,通过下面这段代码获取
this.$route.params.id
可以开启Props属性来接收参数
<template>
<div>
<!-- this.$route.params 可以获取路由的参数 -->
<h3>电影 组件 </h3>
<p> 路由Rest参数 {{ $route.params.id }} -> {{ id }}</p>
</div>
</template> <script>
export default {
name: 'Movie',
props: {
id: {
type: String,
default: ''
}
}
}
</script>
7、路径参数和查询参数
<template>
<div>
<h3>电影 组件 </h3>
<p> 路由Rest参数 {{ $route.params.id }} -> {{ id }}</p>
<p> 路由Query查询参数 {{ $route.query }}</p>
</div>
</template> <script>
export default {
name: 'Movie',
props: {
id: {
type: String,
default: ''
}
}
}
</script>
在使用路由时,附加查询参数:
<template>
<div id="app">
<router-link to="/movie/1">电影1</router-link> |
<router-link to="/movie/2">电影2</router-link> |
<router-link to="/movie/3?aaa=100&bbb=true">电影3</router-link>
<hr>
<router-view></router-view>
</div>
</template> <script>
export default {
name: 'App'
}
</script> <style lang="less">
#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>
8、编码式路由的跳转
<template>
<div>
<!-- this.$route.params 可以获取路由的参数 -->
<h3>电影 组件 </h3>
<p> 路由Rest参数 {{ $route.params.id }} -> {{ id }}</p>
<p> 路由Query查询参数 {{ $route.query }}</p>
<!--
声明式导航,向上面这种直接写标签和路径的实现组件跳转被称为声明式导航
普通网页中点击<a>链接、vue项目中点击<router-link>都属于声明式导航 编程式导航, 利用浏览器API实现导航的方式
普通网页中调用location.href跳转到新页面的方式,属于编程式导航
5.1 vue-router中的编程式导航API
vue-router提供了许多编程式导航的API,其中最常用的导航API分别是:
①this.$router.push('hash 地址') 跳转指定Hash地址,并增加一条历史记录
②this.$router.replace('hash 地址') 跳转指定Hash地址,并替换当前的历史记录
③this.$router.go(数值 n),
在历史记录中进行前进和后退
0 表示当前页
-1 后退一页
如果后退的页数超过了历史记录的上限,则原地不动
1 前进一页
在实际开发中,一般只会前进和后退一层页面。因此vue-router提供了如下两个便捷方法:
①$router.back()
②$router .forward() 导航守卫:
控制路由能否跳转 全局前置首位
-->
<button @click="toMovie1"> 跳转到 电影1</button> <br>
<button @click="toAbout"> 跳转到 关于</button>
</div>
</template> <script>
export default {
name: 'Movie',
props: {
id: {
type: String,
default: ''
}
},
methods: {
toMovie1 () {
// 直接在 <router-view> 标签中跳转
this.$router.push('/movie/1')
},
toAbout () {
this.$router.push('/about')
}
},
}
</script>
9、路由跳转守卫:
import Vue from 'vue'
import Router from 'vue-router' // 把路由对应的组件和Hash映射起来
import Home from '@/components/Index.vue'
import Movie from '@/components/Movie.vue'
import About from '@/components/About.vue' // 引入子组件
import SubPage1 from '@/components/about/SubPage1.vue'
import SubPage2 from '@/components/about/SubPage2.vue' // 安装Router插件
Vue.use(Router) // 设定路由的配置项
const routes = [
{ path: '/', redirect: '/index'},
{ path: '/index', component: Home },
{ path: '/movie/:id', component: Movie, props: true },
{
path: '/about',
component: About,
redirect: '/about/tab1',
children: [
{ path: 'tab1', component: SubPage1 },
{ path: 'tab2', component: SubPage2 }
]
}
] const router = new Router({
routes
}) /**
* 全局前置守卫
* //调用路由实例对象的beforeEach 方法,即可声明“全局前置守卫”
* //每次发生路由导航跳转的时候,都会自动触发fn这个“回调函数"
*/
router.beforeEach(function(to, from, next) {
// to是将要访问的路由的信息对象 // from是将要离开的路由的信息对象 // next 是一个函数,调用next() 表示放行,允许这次路由导航 // console.log(`to -> ${JSON.stringify(to)}`)
// console.log(`from -> ${JSON.stringify(from)}`) /**
* 当前用户拥有后台主页的访问权限,直接放行: next()
* 当前用户没有后台主页的访问权限,强制其跳转到登录页面: next('/login')
* 当前用户没有后台主页的访问权限,不允许跳转到后台主页: next(false)
*/
next()
}) export default router
9.1、局部组件路由配置:
https://www.cnblogs.com/mindzone/p/13910845.html
【Vue2】Router 路由的更多相关文章
- 前端MVC Vue2学习总结(八)——Vue Router路由、Vuex状态管理、Element-UI
一.Vue Router路由 二.Vuex状态管理 三.Element-UI Element-UI是饿了么前端团队推出的一款基于Vue.js 2.0 的桌面端UI框架,手机端有对应框架是 Mint U ...
- vue1与vue2的路由 以及vue2项目大概了解
vue1的路由 1.设置根组件 Vue.extend() 2.设置局部组件 Vue.extend({template:"/home"}) 3.实例化路由 var route ...
- vue2.0路由
现在用vue-cli搭建的环境里面vue-router是下载好的 vue2.0路由方式和以前也有些不同 没了了map和start方法 目录结构如上图 这里有三个文件,app.vue显示,main.js ...
- vue2.0路由写法、传参和嵌套
前置知识请戳这里 vue-routerCDN地址:https://unpkg.com/vue-router@3.0.1/dist/vue-router.js vue-router下载地址:https: ...
- 全面解析JavaScript的Backbone.js框架中的Router路由
这篇文章主要介绍了Backbone.js框架中的Router路由功能,Router在Backbone中相当于一个MVC框架中的Controller控制器功能,需要的朋友可以参考下. Backbone ...
- React初识整理(四)--React Router(路由)
官网:https://reacttraining.com/react-router 后端路由:主要做路径和方法的匹配,从而从后台获取相应的数据 前端路由:用于路径和组件的匹配,从而实现组件的切换. 如 ...
- vue2 router中的 @ 符号表示src
vue2 router中的 @ 符号表示src 学习了:https://segmentfault.com/q/1010000009549802 这个是webpack起的别名: 在build/webpa ...
- hbuilderX创建vue项目之添加router路由(前端萌新)
作为一个刚刚接触前端不久的新人来说,熟悉了一种目录结构或者项目创建方法以后,恨不得一辈子不会变! 可是人要生活,就要工作,既然是打工,当然要满足雇佣者的要求. 今天我来说说 hbuilderX 这个开 ...
- router路由的使用
router路由的使用 1.使用nuxt-link来跳转路由 <!-- 要跳转的路由的地址就是pages文件夹中定义的xxx.vue的前缀名--> <nuxt-link to=&qu ...
- Angular 从入坑到挖坑 - Router 路由使用入门指北
一.Overview Angular 入坑记录的笔记第五篇,因为一直在加班的缘故拖了有一个多月,主要是介绍在 Angular 中如何配置路由,完成重定向以及参数传递.至于路由守卫.路由懒加载等&quo ...
随机推荐
- JavaSE print printf println 区别
*print与println,printf区别 System.out.print();括号内必须含有参数 System.out.println();括号内可以不含参数,此时代表newline即换行; ...
- Java访问权限修饰符(public , private , protected)
访问权限修饰符包括:public.protected.private和默认修饰符(friendly/包访问权限). 可以修饰在类.字段.方法前面. public:公开权限,所有类都可以访问. prot ...
- tomcat部署Jenkins
安装环境 jdk 1.8 tomcat 9.0 jenkins 2.290 准备工作 安装好Tomcat,8080端口启动 安装好jdk,配置好环境变量 ECS服务器安全组放开8080端口 关闭防火墙 ...
- C# .NET HttpWebRequest 显示指定SSL TLS 版本
C# .NET HttpWebRequest 显示指定SSL TLS 版本 (TLS1.0,TLS1.1,TLS1.2) 在程序启动时加入这段代码: ServicePointManager.Secur ...
- .NET FRAMEWORK Entity Framework,EF 手动DB FIRST,不使用设计器
环境: VS2019 SQL SERVER 2012 一.在数据库(db1)创建表结构 "db1"是数据库名,"Table1"是表名. USE [db1] GO ...
- GlaDS应用
题目:Antarctic basal environment shaped by high-pressure flow through a subglacial river system 文章使用数值 ...
- ArrayList、LinkedList、Vector 的区别
ArrayList,Vector 底层是由数组实现,LinkedList 底层是由双线链表实现,从底层的实现可以得出它们的性能问题, ArrayList,Vector 插入速度相对较慢,查询速度相对较 ...
- 解锁LLMs的“思考”能力:Chain-of-Thought(CoT) 技术推动复杂推理的新发展
解锁LLMs的"思考"能力:Chain-of-Thought(CoT) 技术推动复杂推理的新发展 1.简介 Chain-of-Thought(CoT)是一种改进的Prompt技术, ...
- es6.6.1 rest常规操作
ES 内置的REST接口/ 获取版本信息/index/_search 搜索指定索引下的数据 test/_search/_aliases 获取或者操作索引下的别名 _aliases/index/ 查看指 ...
- WPF/C#:数据绑定到方法
在WPF Samples中有一个关于数据绑定到方法的Demo,该Demo结构如下: 运行效果如下所示: 来看看是如何实现的. 先来看下MainWindow.xaml中的内容: <Window.R ...