我正在尝试在我的应用程序中实现子路由器。 我所做的是,在侧面菜单上单击,我导航为该孩子,
this._router.navigate(['/parent/child']);
但不执行子组件,而是再次执行了父组件。
app.module.ts中的路由器
const appRoutes: Routes = [
{ path: 'login', component: LoginComponent },
{path:'parent',
children:[
{path: '', component: ParentComponent, pathMatch: 'full'}
,{path:"child",component:ChildComponent,
outlet:'content'
}]
},
{path:'**',component:LoginComponent}
];
ParentComponent
import { Component } from '@angular/core';
import {Router} from '@angular/router';
import {OnInit} from '@angular/core';
@Component({
selector: 'login',
templateUrl: 'app/parent.template.html'
})
export class ParentComponent implements OnInit{
constructor(private _router: Router){}
ngOnInit(){}
menuClicked(event:any):void{
let elements = event.target.parentElement.children;
for(let i=0;i<elements.length;i++){
elements[i].classList.remove('active')
}
event.target.classList.add('active');
this._router.navigate(['/parent/child']);
}
}
ChildCopponent:
import { Component } from '@angular/core';
import {Router} from '@angular/router';
import {OnInit} from '@angular/core';
@Component({
templateUrl: 'app/child.template.html',
})
export class IncidentComponent implements OnInit{
constructor(private _router: Router){}
ngOnInit(){}
}
发生的是,它导航到了父级,并且工作正常。当我单击左侧菜单时,我可以看到URL更改了几秒钟,然后重新加载了父级,从URL中删除了子级名称。我该如何解决?我在实施过程中错过了什么?
父模板
<div class="home-container row">
<div class="home-body col-12">
<div class="home-header row">
</div>
<div class="home-contents row">
<div class="left-menu col-2">
</div>
<div class="right-contents col-10">
<router-outlet name="content"></router-outlet>
</div>
</div>
</div>
答案 0 :(得分:1)
这通常是由您的<router-outlet>
所在的位置引起的。它应该是您应用程序中唯一变化的部分
检查它是否位于主要组件中
答案 1 :(得分:0)
尝试
this._router.navigate(['child'],{relativeTo: this.route});
在这里。route是ActivatedRoute的一个实例。
import { ActivatedRoute } from '@angular/router';
constructor(private route: ActivatedRoute)