导航到“ **”路线

时间:2020-02-17 13:10:02

标签: angular

我对角形铣削有疑问

我的路线:

{  path: 'file-explorer', canActivate: [AuthorizeGuard], children: [
        { path: '**', component: FileExplorerComponent }
    ]
}

当我尝试导航到“文件浏览器/我的网段”路由器时,出现错误'Cannot match any routes. URL Segment: 'C'

this.router.navigate(['/', 'C']);

我知道angular在路由树中没有此路由,但是当我通过本机location.href += '/' + segment;进行导航时,可以正常工作并且加载了我的组件,但是重新加载了页面,并且失去了性能。

如何导航此路线?

0 个答案:

没有答案