我从控制器发送一个参数。参数角色。在使用thymeleaf的html中,当我用th:value打印该参数时,得到该参数的值。但是当我使用th:switch时,它不起作用。这是代码。
<input
th:value="${role}"
id="role"
type="text"
>
从控制器发送的打印值“ MANAGER”
<th:block th:switch="${role}">
<ul th:case="MANAGER" class="list-unstyled components">
它不起作用。有什么建议吗?