FE/html

[Thymeleaf] 게시글 상세보기에서 댓글 개수 출력

잔망루피 2022. 7. 7. 20:51
<div class="card-header bi bi-chat-dots">
                <span th:text="${#lists.size(commentList)}"></span>
                Comments
            </div>

<span th:text="${#lists.size(commentList)}"></span>를 추가했다.

댓글들이 들어있는 commentList 리스트의 길이를 구한다.

결과

 

참고 👇

https://dev-coco.tistory.com/132

 

Spring Boot JPA 게시판 댓글 작성 및 조회 구현하기

게시판에서 댓글은 없어선 안될 중요한 부분이라고 생각한다. 그래서 오늘은 게시판의 댓글 기능을 구현해보려 한다. 1. Entity 1-1. Comment @Builder @AllArgsConstructor @NoArgsConstructor @Getter @Table(n..

dev-coco.tistory.com

 

https://solbel.tistory.com/1401

 

[thymeleaf] 타임리프 리스트/배열의 크기 구하는 방법

[thymeleaf] 타임리프 리스트/배열의 크기 구하는 방법 타임리프 문법중 컨트롤로에서 넘겨준 리스트 혹은 배열의 크기를 체크할때 사용하는 방법입니다. ${#lists.size(arrList)} 위 내용 보시면 아

solbel.tistory.com

 

반응형