从angular2-alpha更新到最新版本后,布尔值的更改不会更新* ngIf,直到执行某些操作。
以下是相关组件:
declare var CKEDITOR: any;
export class FieldComponent {
@Input() field: any = {};
ckeditor: any;
editable: boolean = false;
constructor(){
this.switchToUnEditable();
this.listenForEvent("FieldEditableEvent", (data) => {
this.switchToEditable();
});
}
switchToEditable(){
this.ckeditor.destroy();
this.ckeditor = CKEDITOR.replace(this.field.id);
this.editable = true;
}
switchToUnEditable() {
if(this.ckeditor) {
this.ckeditor.destroy();
}
this.ckeditor = CKEDITOR.replace(this.field.id, {
toolbar: []
})
this.editable = false;
}
}
以下是此组件的模板:
<div *ngIf="editable" class="green-background white-text unlocked">
This field is unlocked!
<button (click)="switchToUnEditable()">
Save and close.
</button>
</div>
<div *ngIf="!editable" class="red-background white-text locked">
This field is locked!
</div>
<textarea [attr.name]="field.id" [(ngModel)]="field.value">
</textarea>
这在更新之前用于完全正常 - 现在我必须鼠标悬停在div内的按钮以获得要在视图中应用的* ngIf。
或者,我可以在组件树中进一步执行事件,并且还将在该点应用* ngIf。例如,打开侧面导航会将视图从锁定更改为解锁。
这是Angular 2中预期的正确更改检测 - 如果是,如何让用户在执行之前让字段已锁定或解锁更新视图的事件。
答案 0 :(得分:9)
似乎对switchToEditable()
和switchToUnEditable()
的调用是以某种方式在Angulars区域之外进行的。
如果您明确调用变更检测,它应该有效:
constructor(private cdRef:ChangeDetectorRef) {}
switchToEditable(){
this.editable = true;
this.cdRef.detectChanges();
}
switchToUnEditable() {
...
this.editable = false;
this.cdRef.detectChanges();
}