我有一个页脚组件,其中包含一些术语和条件ng-bootstrap模式。我也在其他页面中使用页脚组件。有没有办法可以从父母那里打开模态(比如说家庭组件)?这是我尝试过的东西:
home.component.html:
bytes 1 2 3
home.component.ts:
<a (click)="open(terms)">terms & conditions</a>
footer.component.html:
open(content) {
this.modalService.open(content).result.then((result) => {
}, (reason) => {
});
}
我尝试了这个,但没有打开,也没有出错。任何帮助将不胜感激!