我有一个组件,该组件又嵌入了一个子组件。基本上是从父组件中调用的,称为子组件中的模态。只需点击父亲的HTML即可。
<a type="button" (click)="modal.show()" >
在HTML父级中
<a type="button" (click)="modal.show()">
open modal
</a>
<son #modal ></son>
在 HTML儿子
中<div mdbModal #mymodal="mdbModal" class="modal fade" id="mymodal" tabindex="-1" role="dialog"
aria-labelledby="mymodal" aria-hidden="true" [config]="{backdrop: true, ignoreBackdropClick: false}">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
.
.
.
在 son组件.ts
中var1:any;
var2:any;
var3:any;
@ViewChild(mymodal) mymodal;
... // other code
public show() {
this.mymodal.show(); //call a modal
}
,但是如果我直接从组件中调用它,这将不起作用。我还想修改父组件中在子组件中定义的变量的值,反之亦然。
在父组件
中@ViewChild('mymodal') mymodal: any;
.
.
ngOnInit() {
setTimeout(() => {
this.mymodal.show(); // Uncaught (in promise): TypeError: Cannot read property 'show' of undefined
this.mymodal.var1=1;
this.mymodal.var2=2;
this.mymodal.var3=3;
}, 5000)
}
为什么会这样?
答案 0 :(得分:2)
您在父组件中引用了错误的变量。
首先,您需要引用son
组件的模板变量modal
。
@ViewChild('modal') modal: any;
然后,在父组件中引用mymodal
的{{1}}属性。
modal