在我的控制器中,我有:
$scope.sizes = {
things: [
'one',
'two'
]
}
在我的 HTML 中,我有
<select ng-options="thing for thing in sizes.things"></select>
生成的组合框没有值。但是,在这种情况下:
$scope.things = ['one', 'two'];
<select ng-options="thing for thing in things"></select>
生成的组合框显示“一”、“二”作为其选项。有人可以解释为什么我不能访问 $scope 对象中的数组吗?