如何使用数组作为元素对数组进行 ng-repeat?
How to ng-repeat over array with arrays as elements?
我有一个这样的数组:
$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>
它有效,并向我展示了数据。
这是这项工作的一个 plunker。这都是使用您提供的代码。
一定是你的控制器有问题,或者你连控制器都没有分配给任何东西。
code
我有一个这样的数组:
$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>
它有效,并向我展示了数据。
这是这项工作的一个 plunker。这都是使用您提供的代码。
一定是你的控制器有问题,或者你连控制器都没有分配给任何东西。
code