我在我的电离应用中使用9.1.13 材料9.2.4。 我已注意到有关<>Matstrong>-Material Dialog部分的下述奇怪行为。
当我只用文字播放简单方言时, 方言首先空洞的和继某些微秒(通常为300-1,000)之后,信封见。 放映情况如下:
一开始方言
之后
人口分布如下:
MyDialogComponent
export class MyDialogComponent {
public infoMessage: string;
constructor(
@Inject(MAT_DIALOG_DATA) private data: any,
private dialogRef: MatDialogRef<MyDialogComponent>
) {
if (data) {
this.infoMessage = data.message;
}
}
public static getConfig(): any {
return {
width: 500px ,
height: auto ,
disableClose: true,
panelClass: dialog-info ,
backdropClass: dialog-info-bg
};
}
}
我正在收集以下辩证:
const config = MyDialogComponent.getConfig();
config.data = {message: My text that comes later than pop up };
this._dialogService.open(MyDialogComponent, config);
<>MatDialog
private _dialogService: MatDialog
www.un.org/Depts/DGACM/index_spanish.htm Html Code of MyDialogComponent
<div class="modal modal fade">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="message">{{ infoMessage }}</h5>
</div>
<div class="modal-footer">
<button type="button" class="btn modal-btn close-btn">Close
</button>
</div>
</div>
</div>
我在网上搜索了这一奇怪的行为,但还未找到任何令人满意的答案,说明如何处理这一问题。