出现“Angular路由器子级不渲染”的问题通常是由于路由配置或组件配置的问题导致的。下面是一些可能的解决方法:
const routes: Routes = [
{ path: 'parent', component: ParentComponent,
children: [
{ path: 'child', component: ChildComponent }
]
}
];
来显示子组件。这个标记会被路由器用来渲染子级组件。
Go to child
// parent.component.ts
export class ParentComponent implements OnInit {
showChild = false;
constructor(private service: SomeService) {}
ngOnInit() {
this.service.getData().subscribe((data) => {
// process data
this.showChild = true; // 显示子组件
});
}
}
这些是一些常见的解决方法,可以帮助你解决“Angular路由器子级不渲染”的问题。根据具体情况,可能需要进一步调查和调试来找到问题的根源。