在Angular中,你可以使用ngModel指令在动态复选框列表中进行双向数据绑定。下面是一个使用ngModel的示例代码:
import { Component } from '@angular/core';
@Component({
selector: 'app-checkbox-list',
templateUrl: './checkbox-list.component.html',
styleUrls: ['./checkbox-list.component.css']
})
export class CheckboxListComponent {
options = [
{ label: 'Option 1', selected: false },
{ label: 'Option 2', selected: false },
{ label: 'Option 3', selected: false }
];
}
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
@NgModule({
imports: [FormsModule],
// ...
})
export class AppModule { }
以上代码示例中,我们使用ngFor指令循环遍历选项数组,并为每个选项创建一个复选框。使用ngModel指令绑定复选框的状态到选项对象的selected属性上,实现了双向数据绑定。当用户选择或取消选择复选框时,选项对象的selected属性的值也会自动更新。
希望这个示例能帮助到你!