thymeleaf 显示参数
时间: 2023-08-16 22:39:41 浏览: 95
Thymeleaf资料
在 Thymeleaf 中显示参数可以使用标准表达式语法 `${...}`,例如:`${name}` 可以显示名为 name 的参数的值。如果想要在 HTML 中显示参数值,可以使用 Thymeleaf 提供的内置属性 `th:text`,例如:
```
<p th:text="${name}">Name</p>
```
这将在页面中显示名字参数的值。如果参数的值为 null,则不会显示任何内容。
阅读全文