在Angular 6中从子组件关闭模态

时间:2020-04-22 11:32:38

标签: angular bootstrap-modal

我试图从子组件中关闭模式,但无法关闭。

有人可以在这里建议我这个主意吗?

我正在使用@ ng-bootstrap / ng-bootstrap

以下是我的代码: parent.html

<ng-template #templateref let-modal>
  <childcomp  [modalRef]="modalRef" (return)='onReturn($event)'>

  </childcomp>
</ng-template>

Child.component.ts

@Input modalref:NgbModalRef;
onclose(){
this.modalref.close();
}

child.html

<div class="modal-header"></div><div class="modal-body"></div>

我正在获取close()而不是一个错误函数。

0 个答案:

没有答案