我正在使用角度2:在关闭弹出窗口之后和打开弹出窗口之前如何获得警报。我做了部分检查,但是工作不正常。您能从脚本中找到我误报的地方吗? https://stackblitz.com/edit/angular-xtzmdm?file=src/app/dialog/dialog.component.ts
export class popComponent implements OnInit, OnChanges {
@Input() visible: boolean;
ngOnChanges() {
if(this.visible==true){
alert("popup will open");
}
if(this.visible==false){
alert("popup closed");
}
}