thymeleaf模板之href属性

Posted AC_Arthur

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thymeleaf模板之href属性相关的知识,希望对你有一定的参考价值。

用thymeleaf模板编写前端时, href属性的方法如下:

它的写法与th:src一样 一般写法为th:href="@值"

如果是需要从model中取值的话,写法为

th:href="@$model中的name值"。

有的时候我们不止需要从model中进行取值,还需写字符串与model中的值进行拼接,写法为

th:href="@'字符串'+$model中的nam值"

例子:

以上是关于thymeleaf模板之href属性的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot 之Thymeleaf模板

如何访问 Thymeleaf 模板中的系统属性?

springboot开发之thymeleaf模板引擎

Shiro整合Springboot之thymeleaf模板

SpringBoot之thymeleaf的使用

认识模板引擎-Thymeleaf