私の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>
しかし、これは私のために動作しません。 。
私には何が欠けていますか?第ng-repeat