2019.09.20

 

 페이지 이동이 아닌  tab을 사용하는데 한 페이지 안에 많은 내용을 담을 것 같아서 탭 메뉴 하나당 페이징 분리 작업 

 

 

 

 탭을 사용하는 페이지에 th:include 사용하여 경로를 정해주고

 

1
2
3
4
5
6
<!-- Tab panes -->
<div class="tab-content">
    <th:block th:include="spend/spendTotal"></th:block>
    <th:block th:include="spend/spendSalary"></th:block>
    <th:block th:include="spend/spendUtility"></th:block>
</div>
 

 

 

 분리하여 작업하면 끝

 

1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
 
<!-- spend/spendSalary.html -->
<div id="home" class="container tab-pane active">
    <br>
    <h3>급여</h3>
</div>
 
</html>
 
 

+ Recent posts