我从 mongodb 数据库集合中获得了 Json 数据。
我设法显示了这个 json 的键。
现在,我试图在我的视图中通过双重 ng-repeat 在表格中显示一个数组。
我几乎得到了我想要的东西,但价值顺序不正确。
如果我使用我的项目的属性名称,那很好,但我不希望这样。
我在我的视图中使用此代码:
<table class="table table-striped">
<caption>Content</caption>
<thead>
<tr>
<th ng-repeat="caption in captions">
{{caption}}
</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="content in contentCollection">
<td ng-repeat="item in content">
{{item}}
</td>
</tr>
</tbody>
</table>
将显示:
_id session expires
id1 expires1 session1
它应该是:
_id session expires
id1 session1 expires1
我用正确的值顺序(id1、session1、expires1)从我的控制器发送一个数组。我可以在带有console.log()
.
我想我必须做一个指令才能找到解决方法,但也许我错过了一些东西。
你知道什么是错的吗?
谢谢,
只读存储器