我试图绑定$index
到ng-model
usingui-select
指令但没有运气。
<ui-select ng-model="selected.m">
<ui-select-match>
<span ng-bind="$select.selected.name"></span>
</ui-select-match>
<ui-select-choices repeat="$index as choice in itemArray">
<span ng-bind="choice + '' + $index"></span>
</ui-select-choices>
</ui-select>
在上面的模板itemArray
中是一个月份名称数组,从下拉列表中选择任何月份后,我想将其绑定$index
到ng-model
(ie. 'selected.m') 。
我已经准备好这个笨蛋了。