我应该如何从Angular-2的下拉列表中将数组与多选选项绑定在一起

时间:2019-02-15 12:06:40

标签: javascript angularjs angular2-template angular2-forms

我正在尝试使用多重选择下拉列表绑定数组对象,以便将所选值传递给模型以与其他模型详细信息一起保存。

在这里,我正在使用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));  
}

请帮助我,如何在多次选择中调用该函数,以及如何将数组与所选值绑定?

谢谢!

1 个答案:

答案 0 :(得分:0)

检查参考!在给定的链接中,您会看到您将获得下拉选择的值,您可以添加多选属性并将其完成

angular5-select-option-dropdown