我只能从父视图的HTML而不是父视图的HTML中调用子组件中包含的模式,为什么?

时间:2019-02-11 06:15:29

标签: angular

我有一个组件,该组件又嵌入了一个子组件。基本上是从父组件中调用的,称为子组件中的模态。只需点击父亲的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)
}

为什么会这样?

1 个答案:

答案 0 :(得分:2)

您在父组件中引用了错误的变量。

首先,您需要引用son组件的模板变量modal

@ViewChild('modal') modal: any;

然后,在父组件中引用mymodal的{​​{1}}属性。

modal