看看 Alex Rickabaugh 的这个很棒的 sideNav 示例,它演示了您所需要的。
基于此,您需要ng-container
在ComponentA
. 然后您需要ComponentB
使用自定义指令标记您的部分,并且有一个连接ComponentA
和的服务ComponentB
:
<div class="A1"><div>
<div class="A2" *leftNav >
<h3>Content</h3>
</div>
指示:
@Directive({
selector: '[leftNav]',
})
export class LeftNavDirective implements OnInit {
constructor(private leftNav: LeftNav, private ref: TemplateRef<any>) {}
ngOnInit(): void {
this.leftNav.setContents(this.ref);
}
}
服务:
@Injectable()
export class LeftNav {
private _state = new BehaviorSubject<TemplateRef<any>|null>(null);
readonly contents = this._state.asObservable();
setContents(ref: TemplateRef<any>): void {
this._state.next(ref);
}
clearContents(): void {
this._state.next(null);
}
}
最后,您ComponentB
必须在以下位置订阅您的<div class="A1"> ... <div>
东西ngAfterViewInit
:
ngAfterViewInit(): void {
this
.leftNav
.contents
.subscribe(ref => {
if (this._current !== null) {
this._current.destroy();
this._current = null;
}
if (ref === null) {
return;
}
this._current = this.vcr.createEmbeddedView(ref);
});
}
PS 有关于该主题的视频和幻灯片。