图中item.path获取动态路由id不是具体的id,请问怎么处理呢,this.$route.params.id获取到的只是当前的id,动态路由镶嵌动态路由这种,如:
/fcxx(注:这个页面是列表,点击进入下面/fcxx/loudong/详情页)
/fcxx/loudong/1111(注1:这个页面是是列表,点击进入下面/fcxx/loudong/danyuan/详情页;注2: this.$route.matched方法获取到的只是/fcxx/loudong/:id)
/fcxx/loudong/danyuan/2(注: this.$route.matched方法获取到的只是/fcxx/loudong/danyuan/:id)
功能比如:A列表页面路由如/a,点击任意一列进入任意一个A的详情页面名字为B,/a/03(这个是动态路由弄是吧,03就是id嘛),点击B页面任意一列,再进入B的详情页名字为C,路由如/a/bdetail/01;现在弄面包屑要获取到的路由是刚刚打开的,如(/a;/a/03;/a/bdetail/01)
方案:https://segmentfault.com/a/11...