我有一個應用程序,其中對我的API的調用返回一個也包含對象數組的對象。無法在對象中顯示陣列
本質:
{
"_id": "587bc430e64e9f28a6894dd4",
"lastname": "Lane",
"firstname": "Panny",
"__v": 0,
"contacts": [
{
"name": "rick jevers",
"age": 25,
"_id": "587bc430e64e9f28a6894dd5"
}
]
},
我以爲來顯示陣列中的對象的方法是使用另一個NG重複,像這樣:
<div class="col-md-12" style="clear:both; padding:30px;">
<ul style="list-style: none">
<li ng-repeat="item in sample.post">
<strong>
{{item.firstname}} {{item.lastname}}
</strong>
<ul style="list-style: none;">
<li ng-repeat="contact in sample.post.contacts">
{{contact.name}}
</li>
</ul>
</li>
</ul>
</div>
但是,這並不爲我工作。
我缺少什麼?