suchen

Heim  >  Fragen und Antworten  >  Hauptteil

java - jsp同时满足两个条件<c:when test="${!empty webUser&&page_name != 'main'}"

这样写语法对吗?测试没通过,那该怎么写呢?

天蓬老师天蓬老师2770 Tage vor1032

Antworte allen(4)Ich werde antworten

  • 迷茫

    迷茫2017-04-18 09:52:47

    表达式没有问题,可能是取值有问题。

    Antwort
    0
  • 天蓬老师

    天蓬老师2017-04-18 09:52:47

    <c:when test="${!empty webUser}"><c:if test="${page_name ne 'main'}">.....</c:if></c:when>
    可以将它分开写

    Antwort
    0
  • 高洛峰

    高洛峰2017-04-18 09:52:47

    好像c:when这些都是搭配一套一起用的
    例如:
    `<c:choose>

           <c:when test=条件>内容</c:when>
          <c:when test=条件>内容</c:when>
         <c:otherwise>内容</c:otherwise>

    </c:choose>`
    就是if...else if...else if ...else

    如果只是一个判断就直接用<c:if test=条件>内容</c:if>

    按需使用

    Antwort
    0
  • 高洛峰

    高洛峰2017-04-18 09:52:47

    分隔成两个if试试

    Antwort
    0
  • StornierenAntwort