我有一个类别优惠,其中包含一个属性"单位"作为对象数组。
export class Offer {
public propertyA: string;
public propertyB: string;
public units: Unit[];
}
export class Unit {
public code: string,
public name: string,
public checked: boolean
}
我使用的是Angular2,这些单位必须是用户可以选择的复选框。 我也在使用棱角分明的材料。
html代码如下:
<div *ngFor="let unit of model.units; let i=index">
<mat-checkbox [(ngModel)]="model.units[i].checked"
id="units[{{i}}]" name="units[{{i}}]">
{{ unit.name }}
</mat-checkbox>
</div>
使用以下方法加载units属性:
this.model.units.push(new Unit("code1","name1", false));
this.model.units.push(new Unit("code2","name2", false));
this.model.units.push(new Unit("code3","name3", false));
当我发送表单时,checked属性不包含选中的值。
我做错了什么?
答案 0 :(得分:8)
添加[checked]="unit.checked"
并从ngModel
删除id
,name
和mat-checkbox
。当你加载页面时,这会以单向绑定方式进行,但要进行双向绑定工作,你需要做类似于我在项目中所做的类似的事情:
在更改时传递$event
并手动设置组件文件中的值:
将您的HTML更改为:
<div *ngFor="let unit of model.units">
<mat-checkbox [checked]="unit.checked"
(change)="valueChange(model.units,unit,$event)">
{{ unit.name }}
</mat-checkbox>
</div>
将其添加到组件文件:
valueChange(model.units, unit, $event) {
//set the two-way binding here for the specific unit with the event
model.units[unit].checked = $event.checked;
}
编辑/更新:最近为双向绑定找到了一个解决方案而没有明确处理它
确保model.units
拥有checked
的属性。这是添加它的最简单方法:
component.ts:
this.model.units.forEach(item => {
item.checked = false; //change as per your requirement
});
HTML:
<div *ngFor="let unit of model.units;let i=index">
<mat-checkbox [(ngModel)]="unit.checked" [checked]="unit.checked"
name="{{i}}-name"> //make sure name is unique for every item
</mat-checkbox>
</div>
如果你想控制启用/禁用选项,请尝试添加:
component.ts:
this.model.units.forEach(item => {
item.checked = false;//change as per your requirement
item.disabled = true;//change as per your requirement
});
HTML:
<div *ngFor="let unit of model.units;leti=index">
<mat-checkbox [(ngModel)]="unit.checked" [checked]="unit.checked"
[disabled]="unit.disabled"
name="{{i}}-name">//make sure name is unique for every item
</mat-checkbox>
</div>
答案 1 :(得分:4)
对我来说,这项工作在Angular 7中进行了测试。
只需确保每个复选框的名称都是唯一的
<mat-grid-list cols="4" rowHeight="100px">
<mat-grid-tile *ngFor="let item of aspNetRolesClaims" [colspan]="1" [rowspan]="1">
<span>{{item.claimValue}}</span>
<mat-checkbox [(ngModel)]="item.claimValue" name="{{item.claimType}}">{{item.claimType}}</mat-checkbox>
</mat-grid-tile>
</mat-grid-list>
答案 2 :(得分:2)
我在 Angular 7 中进行了测试,发现您的问题没有发现任何错误,您可以在此StackBlitz example中看到一个有效的演示,但是这里我的答案。
要正常工作,您必须为ngModel绑定的输入提供唯一的name
。
示例代码:
<div *ngFor="let unit of model.units; let i=index">
<mat-checkbox
[(ngModel)]="model.units[i].checked"
id="units-{{i}}"
name="units-{{i}}" // using plain slug-case instead of array notation
>
{{ unit.name }}
</mat-checkbox>
</div>
在这些情况下(units[{{i}}]
),我不想使用数组符号,因为这意味着所有字段都在同一事物中连接在一起,但是由于您的代码似乎起作用,因此这只是一个首选项,而不是错误原因。
答案 3 :(得分:0)
如果您不能像使用 [(ngModel)]
那样使用 FormGroup
,您可以执行以下操作。该代码假定 obj 是自定义对象并具有 IsSeleted 属性。
<mat-checkbox [checked]="obj.IsSelected"
(change)="onSelectionChanged($event, obj)">{{obj.Name}}
</mat-checkbox>
在onSelectionChanged里面,手动更新obj.IsSelected
public onSelectionChanged(arg: MatCheckboxChange, obj:any) {
obj.IsSelected = arg.checked;
}