我的范围中有一个对象数组,我将它们列在一个下拉控件中,如下所示。
<select ng-model="selectedItem" ng-options="product.ID as product.Name for product in products">
<option value="">Please select a product...</option>
</select>
我还希望将 selectedItem 作为一个对象来访问该对象的其他属性,以便我可以操纵页面中的内容。例如;
<a ng-show="selectedItem.isAvailable">Buy Now!</a>
谁能帮我这个?谢谢你。