我通过 ajax 在控制器中拉取到一个数组,var fruits = ['apple', 'banana'],希望实现的是如下效果:
<select>
<option value='apple'>苹果</option>
<option value='banana'>香蕉</option>
</select>
<select ng-options="fruit for fruit in fruits">
</select>
得到了
<select ng-options="fruit for fruit in fruits">
<option value="0" selected="selected" label="apple">apple</option>
<option value="1" selected="selected" label="apple">banana</option>
</select>
应该怎么通过修改 ng-options 标签来修改 value 的值呢?
Utilisez simplement l'option ng-repeat...
En fait, il existe une solution :
http://stackoverflow.com/questions/12139152/how-to-set-the-value-property-in-angularjs-ng-options
Comment transformer un fruit en tableau d'objets