我正在尝试动态加载另一个组件,它之前正在工作但是当更新到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);
}
Run Code Online (Sandbox Code Playgroud)
}
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>
Run Code Online (Sandbox Code Playgroud)
你需要@ViewChild()知道要返回什么
@ViewChild('childContentPlace',
{read: ViewContainerRef}) childContentPlace: ViewContainerRef;
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
912 次 |
| 最近记录: |