我在HTML中有以下代码。它是一个使用Angular来允许用户填充数据的表单。
这是填充数据的表单中的部分:
<setting-item *ngFor="let household of households; let i =
index;"
[hasTariff]="paymentType==1"
[values]="household.toObject()"
(changeValue)="changeValue($event, i)" ></setting-item>
这是数据发送形式的部分:
<div fxFlex="20" fxLayoutAlign="end end">
<button (click)="sendHouseholdValues()"
md-raised-button class="save-btn">SAVE</button>
</div>
我希望在发送时保存每个值。 sendHouseholdValues的代码如下:
sendHouseholdValues()
{
this.householdSettingService.setHouseholdsValue(this.households,
!this.isSetting, this.paymentType);
this.cancel();
}