Summernote 에디터를 이용해 저장하고 조회하니 HTML 태그까지 같이 출력되었다.
Thymeleaf를 사용했기 때문에 th:utext를 이용하는 것으로 해결했다.
<span class="card-body text-dark" th:utext="${post.content}"></span>
th:utext는 unescaped text다.
참고 👇
https://www.thymeleaf.org/doc/tutorials/2.1/usingthymeleaf.html
반응형
'FE > html' 카테고리의 다른 글
[Error] naver login Uncaught TypeError: Cannot read properties of undefined (reading 'age') (0) | 2022.10.03 |
---|---|
JavaScript에서 model 값 가져오기 (0) | 2022.08.13 |
form 외부에서 submit 버튼 (0) | 2022.08.04 |
Uncaught TypeError: $.ajax is not a function (0) | 2022.08.04 |
Uncaught TypeError: $(...).summernote is not a function (0) | 2022.08.03 |