2 回答
TA贡献1966条经验 获得超4个赞
上述解决方案肯定会起作用,但理想情况下,您应该使用 Angular 路由器。这就是我认为你在这里想要实现的目标。
以下是您需要实施的更改:
someRootComponent.html
<app-new-post></app-new-post>
<app-filter-forum></app-filter-forum>
<router-outlet></router-outlet>
此时你可以摆脱ComponentA和componentB。您的路线如下所示:
const routes: Routes = [
{ path: 'view-topic', component: ViewTopicComponent },
{ path: 'sub-topic', component: SubTopicComponent },
{ path: '**', component: PageNotFoundComponent }, // Wildcard route for a 404 page
];
您最终会遇到的问题是管理状态。有很多方法可以处理这个问题。如果您想支持深度链接,那么我建议您这样做:
const routes: Routes = [
{ path: 'view-topic/:topicId', component: ViewTopicComponent },
{ path: 'sub-topic/:subTopicId', component: SubTopicComponent },
{ path: '**', component: PageNotFoundComponent }, // Wildcard route for a 404 page
];
这是链接到主题的方式:
<a [routerLink]="['/view-topic', topic.id]">
Angular 路由器文档非常好,可以在这里找到: Angular Router Docs
TA贡献1869条经验 获得超4个赞
您可以使用 ngIf 检查以显示不同的 dom
ComponentA.html
<app-new-post></app-new-post>
<app-filter-forum></app-filter-forum>
<app-view-topic [topicData]="viewContent" *ngIf="!showBComponent"
(showSubTopic)="onShowSubTopic($event)"></app-view-topic>
<app-sub-topic *ngIf="showBComponent "></app-sub-topic>
ComponentA.ts
let showBComponent: boolean = false;
onShowSubTopic(e: any): void {
this.showBComponent = true;
}
添加回答
举报