如何使用ng-model将数据与select2绑定?

时间:2016-12-22 07:32:30

标签: jquery-select2

我在js中设置了branchInfo.share_product = ['X1','S1'],我想使用下面的代码将所选选项与['X1','S1']绑定。

<select ui-select2 id="share_product_edit" class="form-control" multiple="multiple" tabindex="-1" ng-model="branchInfo.share_product">
    <option ng-repeat="project in products" value="{{project.project}}">{{project.project}}</option>
</select>

我想要达到的目标是: enter image description here

但它显示为(只显示“占位符”值): enter image description here

0 个答案:

没有答案