1.1 相干了解
1.1.1 vue-router
的了解
Vue
的一个插件库,专门用来实现 SPA
利用
1.1.2 对 SPA
利用的了解
- 单页
Web
利用(single page web application,SPA) - 整个利用只有一个残缺的页面
- 点击页面中的导航链接不会刷新页面,只会做页面的部分更新
- 数据须要通过
Ajax
申请获取
1.1.3 路由的了解
-
什么是路由
-
一个路由就是一组映射关系(
key-value
)key
为门路,value
可能是function
或component
-
-
路由分类
-
后端路由:
- 了解:
value
是function
, 用于解决客户端提交的申请 - 工作过程:服务器接管到一个申请时, 依据申请门路找到匹配的函数来解决申请, 返回响应数据
- 了解:
2. 前端路由:
- 了解:
value
是component
,用于展现页面内容 - 工作过程:当浏览器的门路扭转时, 对应的组件就会显示。
-
1.2 根本路由
1.2.1 装置与应用
- 装置
vue-router
,命令:npm install vue-router
- 利用插件:
Vue.use(VueRouter)
-
编写
router
配置项:// 引入 VueRouter import VueRouter from 'vue-router' // 引入 Luyou 组件 import About from '../components/About' import Home from '../components/Home' // 创立 router 实例对象,去治理一组一组的路由规定 const router = new VueRouter({ routes:[ { path:'/about', component:About }, { path:'/home', component:Home } ] }) // 裸露 router export default router
-
实现切换(
active-class
可配置高亮款式)<router-link active-class="active" to="/about">About</router-link>
-
指定展现地位
<router-view></router-view>
-
几个留神点:
- 路由组件通常寄存在
pages
文件夹,个别组件通常寄存在components
文件夹 - 通过切换,“暗藏”了的路由组件,默认是被销毁掉的,须要的时候再去挂载
- 每个组件都有本人的
$route
属性,外面存储着本人的路由信息 - 整个利用只有一个
router
,能够通过组件的$router
属性获取到
- 路由组件通常寄存在
1.2.2 总结
编写应用路由的 3 步
- 定义路由组件
- 注册路由
- 应用路由
1.3 嵌套(多级)路由
-
配置路由规定,应用
children
配置项:routes:[ { path:'/about', component:About, }, { path:'/home', component:Home, children:[ // 通过 children 配置子级路由 { path:'news', // 此处肯定不要写:/news component:News }, { path:'message',// 此处肯定不要写:/message component:Message } ] } ]
-
跳转(要写残缺门路):
<router-link to="/home/news">News</router-link>
1.4 路由传参
1.4.1 路由的 query
参数
-
传递参数
<!-- 跳转并携带 query 参数,to 的字符串写法 --> <router-link :to="/home/message/detail?id=666&title= 你好"> 跳转 </router-link> <!-- 跳转并携带 query 参数,to 的对象写法 --> <router-link :to="{ path:'/home/message/detail', query:{ id:666, title:'你好' } }" > 跳转 </router-link>
-
接管参数:
$route.query.id $route.query.title
1.4.2 命名路由
- 作用:能够简化路由的跳转。
-
如何应用
-
给路由命名:
{ path:'/demo', component:Demo, children:[ { path:'test', component:Test, children:[ { name:'hello' // 给路由命名 path:'welcome', component:Hello, } ] } ] }
-
简化跳转:
<!-- 简化前,须要写残缺的门路 --> <router-link to="/demo/test/welcome"> 跳转 </router-link> <!-- 简化后,间接通过名字跳转 --> <router-link :to="{name:'hello'}"> 跳转 </router-link> <!-- 简化写法配合传递参数 --> <router-link :to="{ name:'hello', query:{ id:666, title:'你好' } }" > 跳转 </router-link>
1.4.3 路由的
params
参数
-
-
配置路由,申明接管
params
参数{ path:'/home', component:Home, children:[ { path:'news', component:News }, { component:Message, children:[ { name:'xiangqing', path:'detail/:id/:title', // 应用占位符申明接管 params 参数 component:Detail } ] } ] }
-
传递参数
<!-- 跳转并携带 params 参数,to 的字符串写法 --> <router-link :to="/home/message/detail/666/ 你好"> 跳转 </router-link> <!-- 跳转并携带 params 参数,to 的对象写法 --> <router-link :to="{ name:'xiangqing', params:{ id:666, title:'你好' } }" > 跳转 </router-link>
特地留神:路由携带
params
参数时,若应用to
的对象写法,则不能应用path
配置项,必须应用name
配置! -
接管参数:
$route.params.id $route.params.title
1.4.4 路由的 props
配置
作用:让路由组件更不便的收到参数
{
name:'xiangqing',
path:'detail/:id',
component:Detail,
// 第一种写法:props 值为对象,该对象中所有的 key-value 的组合最终都会通过 props 传给 Detail 组件
// props:{a:900}
// 第二种写法:props 值为布尔值,布尔值为 true,则把路由收到的所有 params 参数通过 props 传给 Detail 组件
// props:true
// 第三种写法:props 值为函数,该函数返回的对象中每一组 key-value 都会通过 props 传给 Detail 组件
props(route){
return {
id:route.query.id,
title:route.query.title
}
}
}
1.4.5 <router-link>
的 replace
属性
- 作用:管制路由跳转时操作浏览器历史记录的模式
- 浏览器的历史记录有两种写入形式:别离为
push
和replace
,push
是追加历史记录,replace
是替换以后记录。路由跳转时候默认为push
- 如何开启
replace
模式:<router-link replace .......>News</router-link>
1.5 编程式路由导航
this.$router.push(path)
: 相当于点击路由链接(能够返回到以后路由界面)this.$router.replace(path)
: 用新路由替换以后路由(不能够返回到以后路由界面)this.$router.back()
: 申请 (返回) 上一个记录路由this.$router.go(-1)
: 申请 (返回) 上一个记录路由this.$router.go(1)
: 申请下一个记录路由