1. 程式人生 > >【thymeleaf-標籤】th:href

【thymeleaf-標籤】th:href

簡介:

1、基本寫法與th:src一樣 一般寫法為th:href="@{值}";

2、如果是需要從model中取值的話,寫法為:th:href="@{${model中的name值}}";

3、如果需寫字串與model中的值進行拼接,寫法為:th:href="@{'字串'+${model中的nam值}}";

 

eg:

1、超連結請求後端介面:<a th:href="@{'/pageController?pageNum='+${pageNum}}" th:text="${pageNum}"></a> ;

     對應後端介面:

 

   @RequestMapping(value = "/pageController",method = RequestMethod.GET)
        public String pageController(Model model, HttpServletRequest request){
       String pageNum = request.getParameter("pageNum");
        ...........