0
A
回答
1
在HTML中具有角:
<!-- assuming myArray is a variable on $scope object -->
<div ng-repeat="innerArray in myArray">
<div ng-repeat="value in innerArray">
{{ value }}
</div>
</div>
還是在JS,使用for
-loops:
var myArray = [[45,67,4],[7.8,6.8,56],[8,7,8.7]];
for (var i = 0; i < myArray.length; i++) {
var innerArray = myArray[i];
// loop through inner array
for (var j = 0; j < innerArray.length; j++) {
var myValue = innerArray[j];
console.log(myValue);
}
}
1
通過採用NG-重複:
<div ng-repeat="subArray in masterArray">
<div ng-repeat="element in subArray">
{{element}}
</div>
</div>
將產生的結果45 67 4 7.8 6.8 56 8 7 8.7
在javascript中(angularjs它沒有必要在這裏)
masterArray.forEach(function(subArray) {
subArray.forEach(function(element) {
console.log(element);
});
});
相關問題
- 1. Angularjs通過多個json數組遍歷
- 2. 多個孔遍歷數組
- 3. 遍歷多維數組
- 4. PHP遍歷多維數組
- 5. numpy遍歷多維數組
- 6. 遍歷PHP多維數組
- 7. 遍歷多維數組
- 8. 遍歷數組
- 9. 遍歷數組
- 10. 遍歷數組
- 11. 遍歷數組
- 12. 遍歷數組
- 13. 遍歷數組
- 14. 遍歷數組
- 15. 遍歷數組
- 16. 遍歷數組
- 17. 循環遍歷多個標籤數組
- 18. 遍歷jquery中的數組
- 19. C中的數組遍歷#
- 20. 遍歷PHP中的數組
- 21. F中的數組遍歷#
- 22. .filter遍歷一個數組
- 23. 遍歷一個BPEL數組
- 24. 通過查看多個值的數組遍歷數組
- 25. jquery遍歷數組
- 26. 遍歷數組值
- 27. 遍歷數組--java
- 28. 遍歷數組樹?
- 29. ç遍歷數組
- 30. typoscript - 遍歷數組?