HTML:
<select ng-model="productList.name" ng-options="productItem.uuid as productItem.name for productItem in product.items">
</select>
渲染:
<option value="prod_1">Product 1</option>
<option value="prod_2">Product 2</option>
当我们在下拉列表中选择任何选项时,我需要显示标签值,如产品1或产品2。
所以我们在productList.label的ng-model上做了。
但我们得到“prod_1”或“prod_2”