我是thymeleaf的新手,并希望将以下Jsp代码转换为Thymeleaf。我不知道该如何使用thymeleaf进行处理。我的jsp页面类似于以下内容:

index.jsp

<div id="header">
  <% if(${variable1}==null){%>
    <a href="/home">Enter Here</a>
    <br><a href="/signUp">Signup Here</a>
  <% }else if(${variable}=="Guest"){%>
     <p>Hello Guest</p>
     <br><a href="play">Play game</a>
   <% } else { %>
     <p> Enter ${variable}</p>
     <a href="play">Play game</a>

</div>


谁能帮助我将其转换为百里香格式?

最佳答案

<div th:switch="${user.role}">
  <p th:case="'admin'">User is an administrator</p>
  <p th:case="#{roles.manager}">User is a manager</p>
</div>


摘自Thymeleaf文档
http://www.thymeleaf.org/doc/html/Using-Thymeleaf.html#simple-conditionals-if-and-unless

关于java - 在Thymeleaf中检查If-Else,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20497509/

10-12 20:00