是否可以基于ngIf更改某些属性的状态?
<div *ngIf="(command.form.dirty) ? templateModified = true : templateModified = false">
CHANGE!
</div>
答案 0 :(得分:0)
如果您使用的是reactform,则可以订阅form的valueChanges并更改属性。
ngOnInit(): void {
this.command.form.valueChanges.subscribe(
() => {
this.templateModified = this.command.form.dirty
});
}