我正在尝试动态加载另一个组件,之前它正在工作但是当更新到beta 16时它停止了。我阅读了更改日志并更改了我的代码,但仍然没有成功。
我登录到控制台我从@ViewChild得到的东西我想要获得一个ViewContainerRef,但是我得到了ElementRef导致错误。 如何解决这个问题
export class ChildWindowComponent implements OnInit{
public contentType: Type;
public childProps: ChildWindowVm;
@Output() okActionEvent = new EventEmitter<any>();
@Output() cancelActionEvent = new EventEmitter<any>();
@ViewChild('childContentPlace') childContentPlace: ViewContainerRef;
constructor(private dcl: DynamicComponentLoader) {
console.log(this.childContentPlace);
}
ngAfterViewInit() {
console.log(this.childContentPlace);
this.dcl.loadNextToLocation(this.contentType, this.childContentPlace).then((tempComp) => {
tempComp.instance.childVm = this.childProps.childContent;
});
}
ngOnInit() {
}
okClicked(e:any) {
this.okActionEvent.emit(null);
}
cancelClicked(e:any) {
this.cancelActionEvent.emit(null);
}
}
HTML代码
<div>
<div class="child-window-block" >
</div>
<div class="child-window child-window-size" [style.width.px]="childProps.width" [style.height.px]="childProps.height" [style.top.px]="childProps.top" [style.left.px]="childProps.left">
<div class="display-flex flex-direction-col fill-parent">
<div [style.height.px]="childProps.titleHeight">
<div class="child-window-header display-flex flex-item-center">
<div class="flex-grow-1">
<h3>
{{childProps.title}}
</h3>
</div>
</div>
</div>
<div class="div-sep"></div>
<div class="flex-grow-1 fill-parent" style="overflow-y: auto; overflow-x: hidden;">
<div class="child-window-content flex-grow-1" style="height: calc(100% - 42px);">
<div #childContentPlace></div>
<div>
<div class="text-right">
<input type="submit" value="Ok" class="child-window-btn" (click)="okClicked()" />
<input type="button" value="Cancel" class="child-window-btn" (click)="cancelClicked()" />
</div>
</div>
</div>
</div>
</div>
</div>
<div class="child-window-back child-window-size" [style.width.px]="childProps.width" [style.height.px]="childProps.height" [style.top.px]="childProps.top" [style.left.px]="childProps.left">
</div>
答案 0 :(得分:6)
您需要告诉@ViewChild()
要返回的内容
@ViewChild('childContentPlace',
{read: ViewContainerRef}) childContentPlace: ViewContainerRef;