angularjs – ng-repeat:对象数组中每个对象的访问键和值

前端之家收集整理的这篇文章主要介绍了angularjs – ng-repeat:对象数组中每个对象的访问键和值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个对象数组,我使用ng-repeat迭代它们,这很容易。数组看起来像这样:
$scope.steps = [
    {companyName: true},{businessType: true},{physicalAddress: true}
];

我的ng-repeat属性看起来像:

<div ng-repeat="step in steps"> ... </div>

在每次迭代中,步骤等于对象之一,如预期的那样。有没有访问的两个键和step对象的值?所以我可以做这样的事情:

<div ng-repeat="(stepName,isComplete) in steps"> ... </div>

其中stepName ==’companyName’和isComplete == true。我试过做这个确切的事情,但stepName总是只是最终作为步骤对象的索引(这是有道理的)。我只是想弄清楚是否有另一种方式来编写ng-repeat语法,以便我可以获得键和值。

感谢任何想法/建议。非常感激。

PS。我目前的工作是在我的控制器:

$scope.stepNames = [];
angular.forEach($scope.steps,function(isComplete,stepName){
     $scope.stepNames.push({stepName: stepName,isComplete: isComplete});
});

然后迭代这个,但它是很好的做所有在视图中

中继器内的中继器
<div ng-repeat="step in steps">
    <div ng-repeat="(key,value) in step">
        {{key}} : {{value}}
    </div>
</div>
原文链接:https://www.f2er.com/angularjs/146518.html

猜你在找的Angularjs相关文章