springboot|thymeleaf标签之th:href的使用

项目中使用springboot来进行开发,自然也就接触到了thymeleaf这套模板,如果你对c标签很熟悉的话,我觉得上手这个应该是很快的。
介绍下th:href在项目中的使用。
【springboot|thymeleaf标签之th:href的使用】它的写法与th:src一样 一般写法为th:href="https://www.it610.com/article/@{值}"
如果是需要从model中取值的话,写法为
th:href="https://www.it610.com/article/@{${model中的name值}}"。
有的时候我们不止需要从model中进行取值,还需写字符串与model中的值进行拼接,写法为
th:href="https://www.it610.com/article/@{'字符串'+${model中的nam值}}"。


例子:
springboot|thymeleaf标签之th:href的使用
文章图片



    推荐阅读