百里香中的switch语句不起作用

时间:2019-03-23 11:06:38

标签: html switch-statement thymeleaf

我从控制器发送一个参数。参数角色。在使用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">

它不起作用。有什么建议吗?

0 个答案:

没有答案