我对一个角度/素数问题感到困惑。我是angular4的新手,我试图打开并关闭一个对话框作为一个自己的组件。我有一个 list-component ,其中数据表加载所有数据。如果单击某行并按下打开按钮,则应打开对话框组件。但是当我关闭对话框并想重新打开它时,它无法正常工作。
列表component.html:
<button class="btn btn-default openBtn" type="button"
pButton label="Open" [disabled]="jobClosed" (click)="showDialog()">
</button>
<app-details [display]="display"></app-details>
列表component.ts
display: boolean = false;
showDialog() {
this.display = true;
}
对话框-component.html
<p-dialog [(visible)]="display" modal="modal" [responsive]="true"
(onAfterHide)="onClose()">
<p>Runs!</p>
</p-dialog>
对话框-component.ts
@Input() display: boolean;
onClose(){
this.display = false;
}
问题是,当我点击按钮时对话框会打开,但当我关闭它并想再次打开它时,它就不再打开了。谁知道为什么?我已经读过,我需要创建一个@Output变量并使用EventEmitter,但我不知道这是否属实以及它是如何工作的。我希望有人知道为什么在我关闭它之后对话框不再重新打开。
答案 0 :(得分:8)
我是靠自己做的。正如我所说,这里需要一个EventEmitter。
<强>列表component.html:强>
<button class="btn btn-default openBtn" type="button"
pButton label="Open" [disabled]="jobClosed" (click)="showDialog()">
</button>
<app-details [display]="display" (displayChange)="onDialogClose($event)"></app-details>
<强>列表component.ts:强>
display: boolean = false;
showDialog() {
this.display = true;
}
onDialogClose(event) {
this.display = event;
}
<强>对话框-component.html:强>
<p-dialog [(visible)]="display" modal="modal" [responsive]="true">
<p>Runs!</p>
</p-dialog>
<强>对话框-component.ts:强>
@Input() display: boolean;
@Output() displayChange = new EventEmitter();
onClose(){
this.displayChange.emit(false);
}
// Work against memory leak if component is destroyed
ngOnDestroy() {
this.displayChange.unsubscribe();
}