我想知道这种类型的问题是否有一个简单的解决方案。
我有一个对象评论,它又可以包含评论,这些评论也可以包含评论……这可以持续未知数量的周期。
下面是一个数据结构的例子:
var comment = {
text : "",
comments: [
{ text: "", comments : []},
{ text: "", comments: [
{ text: "", comments : []},
{ text: "", comments : []}
{ text: "", comments : []}
]}
]
}
假设我会写 2 个级别的评论:
<div ng-repeat="comment in comments">
{{comment.text}}
<div ng-repeat="comment in comments">
{{comment.text}}
</div>
</div>
我将如何为“n”级嵌套评论实现我的 div?