我想在我的应用程序中有一个如下所示的评论部分:
response1
response1a
response1b
response1b1
response2
response2a
response2b
response2c
response2c1
response2c1a
response2c1a1
response2c1a1
response2c1a1a
response2c1a1a1
假设我通过使用 HTML 来做到这一点,如下所示:
<div class="comment">
Response1
<div class="comment">
Response1a
<div class="comment">
Response1a1
</div>
</div>
<div class="comment">
Response1b
</div>
</div>
这个CSS:
.comment { margin-left: 50px; }
在 Rails 中使用数据结构来表示评论及其相互关系仍然存在问题。Ruby 中是否有原生支持来表示适用于这种数据结构的树数据结构?或者我需要为这个任务定制一些东西吗?