码迷,mamicode.com
首页 > Web开发 > 详细

【thymeleaf-标签】th:href

时间:2018-12-15 19:46:04      阅读:496      评论:0      收藏:0      [点我收藏+]

标签:request   src   ppi   model   servlet   tps   基本   nbsp   https   

简介:

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

标签:request   src   ppi   model   servlet   tps   基本   nbsp   https   

原文地址:https://www.cnblogs.com/zgf-/p/10124201.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!