<div style="float:right;" th:with="username=${#authentication.name}">
<a type="button" class="btn btn-primary" th:href="@{/post}">취소</a>
<button class="btn btn-primary" th:if="${#strings.equals(post.author, username)}">수정</button>
</div>
삭제 버튼도 이런 식으로 button 태그를 쓰면 된다.
작성자와 로그인한 유저 아이디를 비교한다.
username 변수를 버튼 태그 안에서 쓰면 작동이 안 된다. (div에 쓴 이유)
참고 👇
https://okky.kr/article/873095
반응형
'FE > html' 카테고리의 다른 글
[Bootstrap] 부트스트랩의 아이콘 사용하기 (0) | 2022.06.02 |
---|---|
[Error] 부트스트랩 dropdown이 안 될 때 (0) | 2022.04.01 |
[Thymeleaf] th:fragment | th:replace | th:insert (0) | 2022.02.14 |
[Error] form 전송시 서버에 null이 들어온다 (0) | 2022.02.08 |
[CSS] div 태그로 사각형 그리기 (0) | 2022.02.07 |