JSTL |使用c:when和和operator一起使用

时间:2014-12-03 07:39:41

标签: jstl

<c:when test="${empty youtube.id && authormode}">
    <img src="/libs/cq/ui/resources/0.gif" class="cq-video-placeholder cookiespecific" alt="" /> 
</c:when>

关于为什么这个和条件在测试中不起作用的任何观点?

2 个答案:

答案 0 :(得分:1)

我希望这是c:选择标签。假设您需要对作者模式进行空检查,除非它不像下面的布尔值那样:

 <c:when test="${empty youtube.id && empty authormode}">

答案 1 :(得分:1)

如果值例如:

<c:set value="" var="youtube.id" />
<c:set value="true" var="authormode" />

然后使用&amp;&amp;或“和”为此。

        <c:choose>
         <c:when test="${empty youtube.id and authormode}">
            <img src="/libs/cq/ui/resources/0.gif" class="cq-video-placeholder cookiespecific" alt="" /> 
         </c:when>
       </choose>