解决多个路由绑定同一个组件 获取参数只获取一次的方法

```
{
    path: '/application',
    title: '我的工作',
    icon:'code-working',
    name: 'application',
    component: Main,
    children: [
      {
        path: 'index/:id', title: '我的申请', name: 'myApplication', component: resolve => {
          require(['@/views/application/index'], resolve);
        }
      },
      {
        path: 'index/:id', title: '我的待办', name: 'have not done', component: resolve => {
          require(['@/views/application/index'], resolve);
        }
      },
      {
        path: 'index/:id', title: '我的已办', name: 'have been done', component: resolve => {
          require(['@/views/application/index'], resolve);
        }
      }
    ]
  },
```
这三个路由绑定的是同一个组件,在
created(){
   console.log(this.$route.params.id)
}
里面这种动作只会执行一次,也就是只能拿到该组件创建时的路由id,
如果要获得不同的id必须使用官方推荐的方法
**[响应路由参数的变化][1]**


const User = {
  template: '...',
  watch: {
    '$route' (to, from) {
      // 对路由变化作出响应...
    }
  }
}
或者使用 2.2 中引入的 beforeRouteUpdate 守卫:


const User = {
  template: '...',
  beforeRouteUpdate (to, from, next) {
    // react to route changes...
    // don't forget to call next()
  }
}




  [1]: https://router.vuejs.org/zh-cn/essentials/dynamic-matching.html
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值