在Angular中,要确保FormControl数据在视图中更新,可以采取以下几个步骤:
// 在组件类中
import { Component, OnInit } from '@angular/core';
import { FormGroup, FormControl } from '@angular/forms';
@Component({
selector: 'app-my-component',
templateUrl: './my-component.component.html',
styleUrls: ['./my-component.component.css']
})
export class MyComponent implements OnInit {
myForm: FormGroup;
ngOnInit() {
this.myForm = new FormGroup({
myControl: new FormControl()
});
}
}
// 在组件类中,通过异步操作获取值后更新FormControl的值
import { Component, OnInit } from '@angular/core';
import { FormGroup, FormControl } from '@angular/forms';
@Component({
selector: 'app-my-component',
templateUrl: './my-component.component.html',
styleUrls: ['./my-component.component.css']
})
export class MyComponent implements OnInit {
myForm: FormGroup;
ngOnInit() {
this.myForm = new FormGroup({
myControl: new FormControl()
});
// 模拟异步操作获取值
setTimeout(() => {
const value = '新的值';
this.myForm.get('myControl').setValue(value);
}, 2000);
}
}
通过以上步骤,你可以确保FormControl数据在视图中正确更新。