Thymeleaf
Thymeleaf学习笔记
梦里逆天
游戏爱好者、编程菜鸟、职场小白。
展开
-
thymeleaf页面取值与js取值
Js和Thymeleaf如何获取model中的值转载 2020-05-24 12:15:50 · 5067 阅读 · 0 评论 -
thymeleaf使用th:inline属性将后台绑定的数据传给js变量
thymeleaf可以直接将从后台获取的数据传给js中使用。后台接口示例:@Controllerpublic class TestController { @GetMapping("test") public String test(Model model) { model.addAttribute("test", "hello"); // 将"hello"赋值给键名为test的属性 return "index"; }}转载 2020-05-21 13:02:24 · 1348 阅读 · 0 评论 -
Thymeleaf常用的th标签属性
标签属性功能描述示例th:id替换id<input th:id="'xxx' + ${collect.id}"/>th:text文本替换<p th:text="${collect.description}">description</p>th:utext支持html的文本替换<p th:utext="${htmlcontent}">content</p>th:object替换对象<div...转载 2020-05-19 10:08:17 · 6476 阅读 · 0 评论