thymeleaf-标签th:href

Posted zgf-

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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");
        ...........

 






以上是关于thymeleaf-标签th:href的主要内容,如果未能解决你的问题,请参考以下文章

springboot使用thymeleaf时报html没有结束标签

thymeleaf自定义标签方言处理

Thymeleaf - 如何在 Thymeleaf 标签“th:if”中将字符串与 html 中的请求参数进行比较?

Thymeleaf 不解释 sec 标签

springboot 1.5.2 thymeleaf 标签未关闭异常解决办法

带有 Thymeleaf 的标签引导程序