개발자의 끄적끄적

[thymeleaf] 타임리프 textarea 에 데이터 표시하는 방법 본문

개발/thymeleaf

[thymeleaf] 타임리프 textarea 에 데이터 표시하는 방법

효벨 2021. 2. 8. 01:00
728x90
반응형

[thymeleaf] 타임리프 textarea 에 데이터 표시하는 방법

 

 

타임리프에서

 

textarea 에 넘겨받은 변수내용을 표기하고자 할때

 

아래의 내용처럼 하시면 됩니다!

 

<textarea th:value="${detail.answerText}" th:text="${detail.answerText}"></textarea>

 

위 내용 보시면 아시겠지만,

 

th:text 를 이용하여 출력하면

 

textarea 에 정상적으로 데이터가 표시됩니다!

 

참고들하세요!

반응형
Comments