我对角形铣削有疑问
我的路线:
{ path: 'file-explorer', canActivate: [AuthorizeGuard], children: [
{ path: '**', component: FileExplorerComponent }
]
}
当我尝试导航到“文件浏览器/我的网段”路由器时,出现错误'Cannot match any routes. URL Segment: 'C'
。
this.router.navigate(['/', 'C']);
我知道angular在路由树中没有此路由,但是当我通过本机location.href += '/' + segment;
进行导航时,可以正常工作并且加载了我的组件,但是重新加载了页面,并且失去了性能。
如何导航此路线?