th:href 태그에 여러개의 파라미터 추가 시
th:href = "@{url(파라미터1(키=값), 파라미터2(키=값)...)}"
1)
<div class="file_list">
<a th:each="list:${board.fileList}"
th:href="@{/board/downloadBoardFile.do(boardIdx=${board.boardIdx},fileIdx=${list.fileIdx})}"
th:text="|${list.originalFileName}(${list.fileSize}kb)|"></a>
</div>
2)
<td class="title">
<a href="/board/ "th:attrappend="href=${list.boardIdx}" th:text="${list.title}"></a>
</td>
3)
<td class="title">
<a href="/board/openBoardDetail.do?boardIdx="th:attrappend="href=${list.boardIdx}"
th:text="${list.title}"></a>
</td>
화면에서 렌더링 된거 보면 아래와 같이 나온다
<a href="/board/downloadBoardFile.do?boardIdx=31&fileIdx=1">스크린샷 2023-04-16 193711.png(52kb)</a>
'Web > Thymeleaf' 카테고리의 다른 글
[Thymeleaf] th속성 관련 (0) | 2023.04.23 |
---|