如何在数组角度中显示对象?

时间:2016-06-28 07:44:26

标签: arrays object ng-repeat

如何在商品中显示评论?

这是物品保存的地方

$scope.items = [
{ 'item': 'one',
'comments':[{'comment':'comment'}]
},
{ 'item': 'two',},
{'item': 'three'}
];


<ul>
<li ng-repeat="ite in items">
{{ite.item}} {{ite.comments.length}}
<button ng    click="remove($index)">Remove</button> <div ng-repeat="c in ite.comments">{{c.comment}}</div>
</li>

</ul>

http://plnkr.co/edit/19w1Q3XhoWQcpxm5SuxX?p=preview

1 个答案:

答案 0 :(得分:2)

您错过了在列表标记之间添加评论Div。请更新代码,如上面的代码。我已经检查了Plunker。

<li ng-repeat="ite in items">
{{ite.item}} {{ite.comments.length}}
<button ng-click="remove($index)">Remove</button> <div ng-repeat="c in ite.comments">{{c.comment}}</div></li>