npm i vue-router
import router from './router'
Vue.use(vueRouter)
// 引入组件
import vueRouter from 'vue-router'
import About from '../pages/About'
import Home from '../pages/Home'
// 创建并暴露一个路由器
export default new vueRouter({
routes:[
{
path:'/about',
component: About
},
{
path:'/home',
component: Home
}
]
})
About
路由组件通常存放在 pages 文件夹,一般组件通常存放在 components 文件夹。
通过切换,“隐藏”了的路由组件,默认是被销毁掉的,需要的时候再去挂载。
每个组件都有自己的 $route属性,里面存储着自己的路由信息。
整个应用只有一个router,可以通过组件的 $router 属性获取到。
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">Newsrouter-link>
<router-link :to="/home/message/detail?id=666&title=你好">跳转router-link>
<router-link
:to="{
path:'/home/message/detail',
query:{
id:666,
title:'你好'
}
}"
>跳转router-link>
$route.query.id
$route.query.title
routes:[
{
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>
routes:[
{
name: 'about',
path:'/about',
component: About
},
{
path:'/home',
component: Home,
children:[
{
path:'news',
component:News
},
{
path:'message',
component:Message,
children:[
{
name:'detail',
path:'detail/:id/:title', // 使用占位符声明接收 params 参数
component:Detail
}
]
}
]
}
]
<router-link :to="/home/message/detail/666/你好">跳转router-link>
<router-link
:to="{
name:'xiangqing',
params:{
id:666,
title:'你好'
}
}"
>跳转router-link>
特别注意:路由携带params参数时,若使用to的对象写法,则不能使用path配置项,必须使用name配置!
接收参数:
$route.params.id
$route.params.title
{
path:'message',
component:Message,
children:[
{
name:'detail',
path:'detail/:id/:title',
component:Detail,
// props 的第一种写法,值为对象,该对象中的所有 key-value 都会以 props 的形式传递给 Detail 组件
// props:{a: 1, b: 'hello'}
// props 的第一种写法,值为布尔值,若布尔值为真,就会把该路由组件收到的所有 params参数,
// 都以 props 的形式传递给 Detail 组件
// props: true
// props 的第三种写法,值为函数
props($route){
return {
id: $route.params.id,
title: $route.params.title
}
}
}
]
}
作用:控制路由跳转时操作浏览器历史记录的模式
浏览器的历史记录有两种写入方式:分别为 push 和 replace , push 是追加历史记录,replace 是替换当前记录。路由跳转时候默认为 push 。
如何开启 replace 模式:
<router-link replace .......>Newsrouter-link>
methods: {
pushShow(m){
this.$router.push({
name: 'detail',
params:{
id: m.id,
title: m.title
}
})
},
replaceShow(m){
this.$router.replace({
name: 'detail',
params:{
id: m.id,
title: m.title
}
})
},
},
/*
this.$router.forward() //前进
this.$router.back() //后退
this.$router.go() //可前进也可后退
*/
<keep-alive include="News">
<router-view>router-view>
keep-alive>
export default {
name:'News',
data(){
return {opacity: 1}
},
activated(){ // 路由组件被激活时触发。
this.timer = setInterval(() => {
console.log('@')
this.opacity -= 0.01
if(this.opacity <= 0) this.opacity = 1
}, 16)
},
deactivated(){ // 路由组件失活时触发。
clearInterval(this.timer)
}
}
// 全局前置路由守卫 —— 初始化、每次路由切换之前被调用
router.beforeEach((to, from, next) => {
if(to.meta.isAuth) { // 判断当前路由是否需要进行权限控制
if(localStorage.getItem('user') === 'lingchen'){ // 权限控制的具体规则
next() //放行
}else{
alert('用户' + localStorage.getItem('name') + '无权限')
}
}else{
next() //放行
}
})
// 后置路由守卫 —— 初始化、每次路由切换完成之后被调用
router.afterEach((to, from) => {
document.title = to.meta.title || '凌宸' // 修改网页的title
})
{
name:'news',
path:'news',
meta:{isAuth:true,title:'新闻'},
component:News,
beforeEnter:(to, from, next) => {
if(to.meta.isAuth){
if(localStorage.getItem('school') === 'ncu'){
next()
}else{
alert('学校不对!')
}
}else{
next()
}
}
},
export default {
name:'About',
// 通过路由规则,进入该组件时被调用
beforeRouteEnter (to, from, next) {
// ...
if(to.meta.isAuth){
if(localStorage.getItem('school') === 'ncu'){
next()
}else{
alert('学校不对!')
}
}else{
next()
}
},
// 通过路由规则,离开该组件时被调用
// beforeRouteLeave (to, from, next) {
// next()
// }
}
对于一个url来说,什么是hash值?—— #及其后面的内容就是hash值。
hash值不会包含在 HTTP 请求中,即:hash值不会带给服务器。
hash模式:
地址中永远带着#号,不美观 。
若以后将地址通过第三方手机app分享,若app校验严格,则地址会被标记为不合法。
兼容性较好。
history模式:
地址干净,美观 。
兼容性和hash模式相比略差。
应用部署上线时需要后端人员支持,解决刷新页面服务端404的问题。