Ng-Bootstrap打开子组件的模型

时间:2017-12-16 17:08:37

标签: angular ng-bootstrap

我有一个页脚组件,其中包含一些术语和条件ng-bootstrap模式。我也在其他页面中使用页脚组件。有没有办法可以从父母那里打开模态(比如说家庭组件)?这是我尝试过的东西:

home.component.html:

bytes 1 2 3

home.component.ts:

<a (click)="open(terms)">terms &amp; conditions</a>

footer.component.html:

open(content) {
  this.modalService.open(content).result.then((result) => {
  }, (reason) => {
  });
}

我尝试了这个,但没有打开,也没有出错。任何帮助将不胜感激!

0 个答案:

没有答案