如何使用数组作为元素重复数组?

时间:2015-02-18 22:10:17

标签: angularjs ng-repeat

我有一个这样的数组:

   $scope.sortable = [["inProgressCounter","31"],["approvedCounter","3"],["pendingCounter","35"],["rejectedCounter","0"]]

I need to show them with ng-repeat my code is:
<ul>
 <li ng-repeat="info in sortable">{{info[0]}}{{info[1]}}</li>
</ul>

但它什么都没给我。 所以我也尝试在html中打印数据,如下所示:

{{sortable}}
<ul>
     <li ng-repeat="info in sortable">{{info[0]}}{{info[1]}}</li>
    </ul>

它有效,并向我显示数据。

1 个答案:

答案 0 :(得分:1)

这是这个工作的一个吸收者。这都是使用您提供的代码。

你的控制器一定有问题,或者你甚至没有把控制器分配给任何东西。

code   

http://plnkr.co/edit/4pEsP6mr0tA6Toe9coTG?p=preview