사용하기 전에는 무조건 HTML 상단에 박아주고 시작
<html xmlns:th="http://www.thymeleaf.org">
thymeleaf 에서 받은 변수를 자바 스크립에서 사용하고 싶들 때
<script th:inline="javascript">
<script th:inline="javascript">
var userCode = [[${userCode}]];
function moveMyPage(){
window.location.href = '/myPage/'+ userCode ;
}
변수명 받을 때
<p th:text="${userCode}" >User Code</p>
'Front-End > Thymeleaf' 카테고리의 다른 글
[Thymeleaf] 조건문 사용하기 (+ th:block) (0) | 2024.09.22 |
---|