在Angular路由中,要导航到父节点,可以使用router.navigate()
函数并传递父节点的路由路径作为参数。以下是一个示例解决方法:
import { Router } from '@angular/router';
Router
服务:constructor(private router: Router) { }
this.router.navigate(['..'], { relativeTo: this.route });
其中,this.route
是当前组件的ActivatedRoute
对象。
完整示例代码如下:
import { Component } from '@angular/core';
import { Router } from '@angular/router';
import { ActivatedRoute } from '@angular/router';
@Component({
selector: 'app-child-component',
template: `
Child Component
`
})
export class ChildComponent {
constructor(private router: Router, private route: ActivatedRoute) { }
navigateToParent() {
this.router.navigate(['..'], { relativeTo: this.route });
}
}
请确保在使用这个解决方法之前已经正确设置了路由配置,并在需要导航到父节点的组件中使用了正确的路由路径。
下一篇:Angular 路由参数