我正在使用 Angular PrimeNG,我有以下场景
<button (click)="display = !display">Open</button>
<p-dialog [(visible)]="display">
<custom-component [uid]="userId"></custom-component>
</p-dialog>
这里的问题是每当我尝试打开 p-dialog 时,不会再次调用自定义组件,我如何确保再次加载组件以确保模式每次打开时都有最新数据?