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

Thymeleaf中href与 th:href的区别

时间:2019-03-26 19:31:14      阅读:806      评论:0      收藏:0      [点我收藏+]

标签:使用   语法   bsp   localhost   xxxx   oca   tom   mave   war包   

语法格式如下:

<a th:href="@{/channel/page/add}">添加渠道 </a>

<a href="@{/channel/page/add}">添加渠道 </a>

在默认项目路径为空时,打Jar包单独运行时。二者效果一致。

在使用Maven内嵌Tomcat或打War包部署到Servlet容器,或者在项目内执行App启动类,且有配置项目路径时。

二者区别如下:

href始终从端口开始作为根路径,如http://localhost:8080/channel/page/add

th:href会寻找项目路径作为根路径,如http://localhost:8080/dx/channel/page/add

 

其他参考:

th:onclick="@{‘location.href=\‘‘ + ${#httpServletRequest.getContextPath()} + ‘/xxxx\‘}"

Thymeleaf中href与 th:href的区别

标签:使用   语法   bsp   localhost   xxxx   oca   tom   mave   war包   

原文地址:https://www.cnblogs.com/q924152020/p/10602807.html

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