在Angular 14中,使用Typed FormControls来处理表单数据非常方便。但是,如果您想要使用布尔值并设置默认值,则可能会遇到一些麻烦。以下是一种解决方法。
您可以创建一个布尔类型的FormControl,然后使用setValue()方法将其设置为默认值。例如,如果您有一个名为“isChecked”的控件并想要将其设置为true,则可以这样做:
HTML模板:
Check it
组件:
import { Component } from '@angular/core';
import { FormControl } from '@angular/forms';
@Component({
selector: 'app-checkbox-example',
templateUrl: './checkbox-example.component.html',
styleUrls: ['./checkbox-example.component.css']
})
export class CheckboxExampleComponent {
isChecked: FormControl = new FormControl(false);
ngOnInit(): void {
// Set default value
this.isChecked.setValue(true);
}
}
在上面的示例中,我们创建了一个名为“isChecked”的FormControl并将其设置为false。在组件的ngOnInit()方法中,我们使用setValue()方法将其设置为true。
这就是使用Typed FormControls处理布尔值和默认值的一种简单方法。