vue动态路由(多级嵌套),面包屑路由怎么获取,用 this.$route.matched方法获取到path都不是具体的id

clipboard.png

clipboard.png

图中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)
阅读 15.5k
4 个回答

功能比如: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...

this.$router.options.routes可以读取所有的路由

$route.params.id
/user/:username/post/:post_id

this.$route.params.username

this.$route.params.post_id
新手上路,请多包涵

clipboard.png

推荐问题
宣传栏