作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
尝试使用组件中的路由器对象通过代码导航到 subview 时遇到问题:
this.router.navigate(['./details']); //Error: Cannot match any routes: 'details'
但在我使用 routerLink 的模板中,它有效: 考验我我需要做同样的事情,但在组件内使用 router.navigate 方法。我的组件显示在 routerOutlet 的另一个组件中,我有以下子路由配置:
export const HOME_ROUTES: Routes = [
{
path: 'home',
component: HomeComponent,
children: [{path: '',outlet: 'route1',component: DashboardComponent,pathMatch: 'full'},
{
path: 'dashboard',
outlet: 'route1',
component: DashboardComponent
},
{
path: 'tasks',
outlet: 'route1',
component: TasksComponent,
children: [
{ path: '',component: TasksListComponent,pathMatch: 'full'},
{ path: 'list',component: TasksListComponent},
{ path: 'details', component: TasksDetailsComponent },
{ path: 'view', component: TasksListComponent },
]
}
]
}
];
我正在尝试显示 TasksListComponent 中的 TasksDetailsComponent,我的相对 URL 是“http://localhost:8000/home/(route1:tasks)
非常感谢任何帮助非常感谢
最佳答案
首先
import { ActivatedRoute } from '@angular/router';
然后在你的组件中
constructor(private route: ActivatedRoute) {}
然后
this.router.navigate(['./details'], { relativeTo: this.route });
关于angular2-routing - Angular2 路由 : How to navigate to a child view from a service instead of routerLink?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41991647/
我是一名优秀的程序员,十分优秀!