赞
踩
我们经常需要把某种模式匹配到的所有路由,全都映射到同个组件。例如,我们有一个 User组件,对于所有 ID 各不相同的用户,都要使用这个组件来渲染。那么,我们可以在 vue-router 的路由路径中使用“动态路径参数”(dynamic segment)来达到这个效果:
const User = {
template: "
User
", };
const router = new VueRouter({
routes: [
// 动态路径参数 以冒号开头
{
path: "/user/:id",
component: User
}],
});
问题:vue-router 组件复用导致路由参数失效怎么办?
解决方案:
1、通过watch监听路由参数再发请求
watch:{
"router":function(){
this.getData(this.$router.params.xxx)
}
}
2、用 :key来阻止复用
router-view :key="$route.fullPath"'
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。