html页面中thymeleaf提示消失
时间: 2023-08-16 16:21:01 浏览: 115
乐优商城页面静态化thymeleaf的item,html模板页面
Thymeleaf的提示信息一般是通过在html标签中添加th:text属性来显示的。如果提示信息显示后又消失了,可能是因为页面刷新或跳转导致了提示信息的清除。可以尝试在控制器中将提示信息存储到Model对象中,然后在跳转页面时通过Thymeleaf的th:if属性来判断是否需要显示提示信息。例如:
在控制器中:
```
model.addAttribute("successMsg", "操作成功!");
```
在html页面中:
```
<div th:if="${successMsg != null}" class="alert alert-success" th:text="${successMsg}"></div>
```
这样即可保证提示信息在跳转后仍然能够显示。
阅读全文