我有一个角度应用程序,我在其中创建一个基于json的表,如下所示:
<thead>
<tr>
<th ng-repeat="(header, value) in resultData[0]">
{{header}}
</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="row in resultData">
<td ng-repeat="cell in row">
{{cell}}
</td>
</tr>
</tbody>
此处的表格会创建标题以及json
的内容。但是此代码的结果是一个包含已排序标题的表格。有没有办法让订单与json
文件中的相同?