gpt4 book ai didi

javascript - ng-repeat 嵌套嵌套对象

转载 作者:行者123 更新时间:2023-11-30 21:18:25 24 4
gpt4 key购买 nike

我有一个对象,它有评论和回复对象,回复对象还有嵌套的回复对象。我如何在 ng-repeat 上渲染它。我试过这个solution ,它使我的回复对象未定义。例如这个

<div  ng-repeat="it in item.CommentReplies=it.CommentReplies  track by $index" >

为什么它使我的对象未定义是正确的解决方案吗?这是我的对象 enter image description here

最佳答案

你应该像这样使用两个 ng-repeat :

<div class="replylist" ng-repeat="it in item.CommentReplies track by $index">
{{it.Text}}
<div ng-repeat="comment in it.CommentReplies">
{{comment.Text}}
</div>
</div>

希望这对您有所帮助。本来可以发表评论,但没有足够的声誉。

关于javascript - ng-repeat 嵌套嵌套对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45440802/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com