gpt4 book ai didi

arrays - AngularJs ng-repeat 表中的二维数组,每个子数组一列

转载 作者:行者123 更新时间:2023-12-01 02:13:58 25 4
gpt4 key购买 nike

我有一个数组,我需要将该数组放入表中。

$scope.testArr=[
{'first':[
{ 'value':'1_1', 'rolle':'one1' },
{ 'value':'2_1', 'rolle':'two1' },
{ 'value':'3_1', 'rolle':'three1'}
]
},
{'second': [
{ 'value':'1_2', 'rolle':'one2' },
{ 'value':'2_2', 'rolle':'two2' },
{ 'value':'3_2', 'rolle':'three2' }
]
}
];

结果表应该有 4 列,每个子数组应该是一(或两)列。像这样:
one1 | 1_1 | one2 | 1-2two1 | 2_1 | two2 | 2_2   three1|3_1 | three2|3_2

So far I got this. Its only the first subarray:

<table>
<tbody ng-repeat="test in testArr">
<tr ng-repeat="t1 in test.first">
<td> {{t1.rolle}} </td>
<td> {{t1.value}} </td>
</tr>
</tbody>
</table>

如何将第二个子数组添加为列?没有必要成为一张 table 。

最佳答案

var app = angular.module('app', []);

app.controller('mainCtrl', function ($scope) {


$scope.testArr = [{
'first': [{
'value': '1_1',
'rolle': 'one1'
}, {
'value': '2_1',
'rolle': 'two1'
}, {
'value': '3_1',
'rolle': 'three1'
}]
}, {
'second': [{
'value': '1_2',
'rolle': 'one2'
}, {
'value': '2_2',
'rolle': 'two2'
}, {
'value': '3_2',
'rolle': 'three2'
}]
}];

});
td {
border:solid 1px grey
}
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>

<div ng-app="app">
<div ng-controller="mainCtrl">
<table>
<tbody ng-repeat="test in testArr">
<tr ng-repeat="t1 in test.first">
<td>{{t1.rolle}}</td>
<td>{{t1.value}}</td>
<td>{{testArr[1].second[$index].rolle}}</td>
<td>{{testArr[1].second[$index].value}}</td>
</tr>
</tbody>
</table>
</div>
</div>

关于arrays - AngularJs ng-repeat 表中的二维数组,每个子数组一列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26606954/

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