《路由篇》路由

路由

参考链接:https://www.cnblogs.com/chengqiang521/p/15512719.html

router是什么

路由,一个router就是一组key-value对,只不过这里的key是路径,就是path,value是组件。

基本使用

1安装vue-router

npm i vue-router

2应用插件

Vue.use(VueRouter)

3编写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

4实现切换(active-class可配置高亮样式)

<router-link active-class="active" to="/about">About</router-link>

5指定展示位置

<router-view></router-view>

多级路由

1配置路由规则,使用children配置项:

点击查看代码
routes:[
	{
		path:'/about',
		component:About,
	},
	{
		path:'/home',
		component:Home,
		children:[ //通过children配置子级路由
			{
				path:'news', //此处一定不要写:/news
				component:News
			},
			{
				path:'message',//此处一定不要写:/message
				component:Message
			}
		]
	}
]

2跳转写完整路径

<router-link to="/home/news">News</router-link>

路由的query参数

1传递参数

点击查看代码
<!-- 跳转并携带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>

2接收参数:

$route.query.id
$route.query.title

命名路由

可以简化路由的跳转。

1给路由命名:

点击查看代码
{
	path:'/demo',
	component:Demo,
	children:[
		{
			path:'test',
			component:Test,
			children:[
				{
                      name:'hello' //给路由命名
					path:'welcome',
					component:Hello,
				}
			]
		}
	]
}
2简化跳转:
点击查看代码
<!--简化前,需要写完整的路径 -->
<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>

路由的params参数

1配置路由,声明接收params参数

点击查看代码
{
	path:'/home',
	component:Home,
	children:[
		{
			path:'news',
			component:News
		},
		{
			component:Message,
			children:[
				{
					name:'xiangqing',
					path:'detail/:id/:title', //使用占位符声明接收params参数
					component:Detail
				}
			]
		}
	]
}

2传递参数(特别注意:路由携带params参数时,若使用to的对象写法,则不能使用path配置项,必须使用name配置!)

点击查看代码
<!-- 跳转并携带params参数,to的字符串写法 -->
<router-link :to="/home/message/detail/666/你好">跳转</router-link>
<!-- 跳转并携带params参数,to的对象写法 -->
<router-link
	:to="{
		name:'xiangqing',
		params:{
		   id:666,
            title:'你好'
		}
	}"
>跳转</router-link>

3接收参数:

$route.params.id
$route.params.title

路由的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
		}
	}
}

常用属性和方法

$router

参考链接:https://www.cnblogs.com/czy960731/p/9288830.html

分析$router是什么?

$router,是VueRouter的一个实例对象,通过Vue.use(VueRouter)和VueRouter构造函数,得到了一个router的实例对象,这个实例对象是一个全局对象,他包含了所有的路由,也包含了关键的对象和属性。
例如:history对象

$router.push({path:'home'});//;本质是向history栈中添加一个路由

$route

参考链接:https://www.cnblogs.com/czy960731/p/9288830.html

分析$route又是什么?
route,是一个跳转的路由对象,每一个路由都会有一个route对象,是一个局部的对象,可以获取对应的name,path,params,query等;关于params等属性,参考上述内容。

我们可以从vue devtools中看到每个路由对象的不同
image

其中属性介绍:

$route.path 
// 字符串,等于当前路由对象的路径,会被解析为绝对路径,如 "/home/news" 。
$route.params 
// 对象,包含路由中的动态片段和全匹配片段的键值对
$route.query 
// 对象,包含路由中查询参数的键值对。例如,对于 /home/news/detail/01?favorite=yes ,会得到$route.query.favorite == 'yes' 。
$route.router 
// 路由规则所属的路由器(以及其所属的组件)。
$route.matched 
// 数组,包含当前匹配的路径中所包含的所有片段所对应的配置参数对象。
$route.name 
// 当前路径的名字,如果没有使用具名路径,则名字为空。
posted @ 2024-01-16 10:07  Fusio  阅读(22)  评论(0编辑  收藏  举报