본문 바로가기

나혼자개발

thymeleaf 사용법

글자넣기

<h1 th:text="${text}"></h1>

 

if문쓰기

<div th:if="${test}">

not if 문 쓰기

<div th:unless="${test}">

javascript안에 변수넣기

<button th:onclick="testFucn([[${test}]])">테스트버튼</button>

a태그안에 변수넣기

<a th:href="@{/follow/followerList/{id}(id = ${testId})}" >followers</a>

for문쓰기

<div th:each="test : ${tests}">

img태그안에 변수넣기

<img th:src="${'/upload/'+test}"/>

springsecurity를 사용할때 본인의 세션을 가죠올때

<a th:href="|/user/${session.loginUser.id}|" >

값쉽게넣기

[[${user.id}]]

'나혼자개발' 카테고리의 다른 글

[spring] AOP예시코드  (1) 2024.10.06
만들예정 화면  (0) 2024.07.11
SpringSecurity 사용방법  (0) 2024.07.09
ResponseDto에 들어갈 코드  (0) 2024.07.08
javascript+jquery로 데이터보낼때 예시  (0) 2024.07.08