第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

評論樹,回復(fù)回復(fù)即可顯示

評論樹,回復(fù)回復(fù)即可顯示

忽然笑 2023-11-10 15:55:38
我需要實現(xiàn)評論樹,但無法獲得回復(fù)工作的回復(fù)。Comment.java...    @Id    @GeneratedValue(strategy = GenerationType.IDENTITY)    private Long id;    private String content;    @ManyToOne    private Post post;    @ManyToOne    private Comment parent;    @OneToMany(mappedBy = "parent")    private List<Comment> children = new ArrayList<Comment>();...PostController.javamodel.addAttribute("comments", commentRepository.findAllCommentsByPostIdAndParentIsNull(id));帖子.html<th:block th:each="comment : ${comments}"><p th:text="${comment.content}">comment</p><th:block th:each="child : ${comment.children}"><div class="child">  <p th:text="${child.content}">comment</p></div></th:block></th:block>評論數(shù)據(jù)庫ID | CONTENT | PARENT_ID | POST_ID1    text1         null        12    text2          1          13    text3          2          14    text4         null        1我想要的輸出text1  text2    text3text4我得到的輸出text1 text2text4基本上回復(fù)的回復(fù)都不會顯示。我該如何獲得我想要的輸出?
查看完整描述

1 回答

?
撒科打諢

TA貢獻1934條經(jīng)驗 獲得超2個贊

嘗試以下方法


<th:block th:each="comment : ${comments}">

  <p th:text="${comment.content}">comment</p>

  <div th:fragment="f_call(comment)" 

      th:unless="${#lists.isEmpty(comment.children)}" >

      <div th:each="child : ${comment.children}" th:inline="text">

          [[${child.content}]]

          <div th:replace="this::f_call(${child})"></div>

      </div>

  </div>

</th:block>


查看完整回答
反對 回復(fù) 2023-11-10
  • 1 回答
  • 0 關(guān)注
  • 169 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號