我需要使用 ng-options 遍历以下对象:
var a = {
'optionName1': 'optionValue1',
'optionName2': 'optionValue2',
'optionName3': 'optionValue3',
'optionName4': 'optionValue4',
};
我从第 3 方资源中以这种格式获取此对象,我不想手动重新排列它。
我已经进行了谷歌搜索,并查看了文档,它仅处理列表和对象列表。
我需要使用 ng-options 遍历以下对象:
var a = {
'optionName1': 'optionValue1',
'optionName2': 'optionValue2',
'optionName3': 'optionValue3',
'optionName4': 'optionValue4',
};
我从第 3 方资源中以这种格式获取此对象,我不想手动重新排列它。
我已经进行了谷歌搜索,并查看了文档,它仅处理列表和对象列表。
对于这样的模型:
$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>