路径中间的参数的角形路径的周期性?

时间:2018-07-25 06:50:37

标签: angular angular-routing angular-router

例如,您可以有类似的东西吗? 仪表板/项目/:id

然后从这一点开始,在其上再加上一个单独的模块又增加了另一层?例如

dashboard / items /:id / itemInfo

遇到 错误:无法匹配任何路线。网址段

没有找到严格说您不能的任何内容,但也没有找到任何示例。

1 个答案:

答案 0 :(得分:0)

您可以使用:

{
    path: 'dashboard/items/:id/itemInfo',
    component: 'ItemInfoComponent',
    pathMatch: 'full'
}