使用角度选择
https://github.com/localytics/angular-chosen
并测试以下示例
<select multiple
chosen
ng-model="state"
ng-options="s.name for s in states">
<option value=""></option>
</select>
但是,我想知道如何将状态对象的名称值绑定到ng-model?
显示的选项将仅显示状态名称,但选择后,整个状态对象将绑定到ng-model而不仅仅是选定的名称。
任何想法都会像往常一样被充分展现出来!
答案 0 :(得分:1)
您可以尝试这种格式
select as label for value in array
例如。 s.name as s.name for s in states