gpt4 book ai didi

angularjs - 使用 ng-repeat 在 Angular 中渲染数组表

转载 作者:行者123 更新时间:2023-12-04 23:16:51 29 4
gpt4 key购买 nike

我有一个数组数组(代表行和列),我需要用数据呈现一个 HTML 表格。

每一行都是列值的数组,例如:$scope.table.row[0] = [123, 456, 789]

这是我的尝试(没有用)。有什么想法吗?

<table>
<tbody>
<tr ng-repeat="row in table">
<td ng-repeat="col in row">{{col}}</td>
</tr>
</tbody>
</table>

最佳答案

您需要遍历 table.row 或使 table 成为数组本身的数组。 Demo .

<table>
<tbody>
<tr ng-repeat="row in table.row">
<td ng-repeat="col in row">{{col}}</td>
</tr>
</tbody>
</table>

table = [ [123, 456, 789], [111, 222, 333], [111, 222, 333]]

<table>
<tbody>
<tr ng-repeat="row in table">
<td ng-repeat="col in row">{{col}}</td>
</tr>
</tbody>
</table>

关于angularjs - 使用 ng-repeat 在 Angular 中渲染数组表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38634208/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com