我需要使用ng-options迭代以下对象:
var a = {
'optionName1': 'optionValue1',
'optionName2': 'optionValue2',
'optionName3': 'optionValue3',
'optionName4': 'optionValue4',
};
我从第三方资源获取此格式的此对象,我宁愿不手动重新安排它。
我已经进行了Google搜索,并查看了文档,它只处理了我能说的对象列表和对象列表。
答案 0 :(得分:32)
对于这样的模型:
$scope.options = {
'optionName1': 'optionValue1',
'optionName2': 'optionValue2',
'optionName3': 'optionValue3',
'optionName4': 'optionValue4',
};
您可以创建如下选项:
<select ng-change="change()" ng-model="votes.status"
ng-options="v for (k,v) in options">
</select>