我有一个对象数组,我使用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}); });
然后迭代这个,但它是很好的做所有在视图中
中继器内的中继器
原文链接:https://www.f2er.com/angularjs/146518.html<div ng-repeat="step in steps"> <div ng-repeat="(key,value) in step"> {{key}} : {{value}} </div> </div>