在Angular 9中,视图中的变量不更新可能是由于变量的变化没有被检测到而导致的。以下是一些解决方法:
在组件中注入ChangeDetectorRef,并在变量发生变化时调用它的detectChanges()
方法,以手动触发变量的检测。
import { Component, ChangeDetectorRef } from '@angular/core';
@Component({
selector: 'app-example',
template: `
{{ myVariable }}
`
})
export class ExampleComponent {
myVariable: string;
constructor(private cdr: ChangeDetectorRef) {}
changeVariable() {
this.myVariable = 'New Value';
this.cdr.detectChanges();
}
}
将变量包装在一个Promise中,并使用async管道在视图中进行异步更新。
import { Component } from '@angular/core';
@Component({
selector: 'app-example',
template: `
{{ myVariable | async }}
`
})
export class ExampleComponent {
myVariable: Promise;
changeVariable() {
this.myVariable = new Promise((resolve) => {
setTimeout(() => {
resolve('New Value');
}, 1000);
});
}
}
在组件中注入NgZone,并在变量发生变化时将其包装在run()
方法中,以确保变量的变化被检测到。
import { Component, NgZone } from '@angular/core';
@Component({
selector: 'app-example',
template: `
{{ myVariable }}
`
})
export class ExampleComponent {
myVariable: string;
constructor(private zone: NgZone) {}
changeVariable() {
this.zone.run(() => {
this.myVariable = 'New Value';
});
}
}
这些方法中的任何一种都可以解决Angular 9中视图中变量不更新的问题。根据您的具体需求和场景,选择适合您的解决方法。