项目中使用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常用注解介绍
- 第四节:SpringBoot中web模版数据渲染展示
- SpringBoot2022【草稿】
- 聊聊springboot项目全局异常处理那些事儿
- 第一节:创建SpringBoot项目并运行HelloWorld
- springboot管理系统[基于员工角色和文件权限的分级的后台管理系统源码]
- SpringBoot之@ComponentScan和@SpringBootApplication扫描覆盖问题
- mybatis|记mybatis查询null字段导致的NPE
- SpringBoot|SpringBoot 整合 druid数据源
- springboot项目配置application添加图片映射 (windows and linux 都可使用)