我正在尝试在Angular2应用程序中使用Select2。当我选择选项时,我可以打印出我的选择,但是将选定的选项绑定到我的角形控件时有问题。
这是我的HTML:
<select id="fields" class="form-control fields-select" multiple="multiple"
formControlName="branchCode">
<option *ngFor="let field of _availableFields" [value]="field">{{field}}
</option>
</select>
这是我的ts档案:
private _availableFields: Array<any> = ['Value1', 'Value2', 'Value3'];
private _selectedFields: Array<string> = [];
export class AppComponent{
editForm : new FormGroup({
email: new FormControl('', Validators.required),
branchCode: new FormControl('', Validators.required),
});
}
ngAfterViewInit(){
jQuery('.fields-select').select2();
jQuery('.fields-select').on('change',
(e) =>
this._selectedFields = jQuery(e.target).val();
console.log(this._selectedFields);
);
};
我在var this._selectedFields中得到了我的选择。 如何将this._selectedFields中的选定值绑定到我的formControl“branchCode”?