thymeleaf页面末班
时间: 2023-10-13 08:24:38 浏览: 142
SpringBoot页面展示Thymeleaf
Thymeleaf页面模板的文件扩展名为.html,模板文件中可以包含HTML、CSS、JavaScript等内容。Thymeleaf页面模板中可以使用的标签有:
1. th:if:用于条件判断
2. th:unless:用于否定条件判断
3. th:each:用于循环遍历集合
4. th:object:用于指定当前表单对象
5. th:value:用于指定表单元素的值
6. th:action:用于指定表单提交的URL
7. th:text:用于输出文本内容
8. th:href:用于指定链接的URL
9. th:src:用于指定图片、音频、视频等资源的URL
Thymeleaf页面模板的结构如下:
```html
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<!-- 页面内容 -->
</body>
</html>
```
其中,xmlns:th="http://www.thymeleaf.org"是Thymeleaf的命名空间,用于引入Thymeleaf的标签库。在页面中使用Thymeleaf标签时,需要加上th:前缀。例如:
```html
<p th:text="${message}">Hello World!</p>
```
上述代码中,th:text="${message}"表示将message变量的值输出到页面中,如果message变量不存在,则输出Hello World!。
阅读全文