嵌套数组中使用Angularjs 1.7.x ng-repeat(key,val)显示不同的UI元素

问题描述 投票:1回答:1

我对angularjs非常陌生,我正在尝试找出具有键/值对的ng-repeat。我已将以下图像附加到预期的结果中。这是我正在尝试的代码,但得到的结果不正确。ng-repeat result

这是我的html代码

.row(ng-repeat="(key, prop) in stars")
   div(ng-repeat="val in prop")
     i.star.yellow.icon

这是我的角度范围

$scope.stars = {
    count: {
      one: ['1'],
      two: ['1','2'],
      three: ['1','2','3']
    }
};

感谢您的任何帮助

angularjs angularjs-scope angularjs-ng-repeat
1个回答
0
投票

您忽略了第一个prop上的ng-repeatcount的事实。因此,第二个ng-repeat不在查看数组,而是在count

中的对象数
© www.soinside.com 2019 - 2024. All rights reserved.