在官网中 嵌套路由这一块,原文是这样写的
const router = new VueRouter({
routes: [
{ path: '/user/:id', component: User,
children: [
{
// 当 /user/:id/profile 匹配成功,
// UserProfile 会被渲染在 User 的 <router-view> 中
path: 'profile',
component: UserProfile
},
{
// 当 /user/:id/posts 匹配成功
// UserPosts 会被渲染在 User 的 <router-view> 中
path: 'posts',
component: UserPosts
}
]
}
]
})
我想问 为什么是匹配 /user/:id/profile
而不是/user/profile
,因为这样/user/profile
看来不是更像是 user 下面的子路由吗???而中间的那一层是什么作用呢?谢谢
/user/:id 的路由,实际的url地址是:xxx.com/#/user/1
表示路由处理对象User,会接收一个参数,id=1
User的vue实例中,应该有这样的参数:
props: ['id']
也可以用下面的语句取id的值,但不推荐,因为这样写的话,组件就必须依赖vue-route
this.$route.params.id