我正在尝试使用多重选择下拉列表绑定数组对象,以便将所选值传递给模型以与其他模型详细信息一起保存。
在这里,我正在使用change事件接收选择的选项值,但是该功能在这里不起作用,这是我的代码:
HTML代码:
label class="col-md-3 form-control-label text-right">Customer Name</label>
<div class="col-md-7">
<select multiple="multiple" class="js-example-basic-multiple form-control selectsizing" (change)="oncustomerSelect($event.target.value)" name="customer_name" [(ngModel)]="customer_name.customer" #customer_name="ngModel" [ngClass]="{ 'is-invalid': f.submitted && customer_name.invalid }" required>
<option></option>
<option [value]="customernames.Business_name" *ngFor="let customernames of model_customername">{{customernames.Business_name}}</option>
</select>
</div>
在为下拉列表选择任何值时,应调用oncustomerSelect()
中描述的函数component.ts
,但此函数调用无法完成。
这是我的 Component.ts :
customer_name:any={
customer:[]
};
model:any={
product_type:"in stock",
item_code:"ASD34",
customer_name:[]=[]
}
oncustomerSelect(value){
console.log("customer select::"+JSON.stringify(value));
var i=0;
this.model.customer_name[i]=value;
i++;
console.log("model customer::"+JSON.stringify(this.model.customer_name));
}
请帮助我,如何在多次选择中调用该函数,以及如何将数组与所选值绑定?
谢谢!