我试图只根据字符串是否不等于显示某些内容:
<c:if test="${content.getContentType().getName() != "MCE"}">
<li><a href="#publish-history" id="publishHistoryTab">Publish History</a></li>
</c:if>
不断抛出错误org.apache.jasper.JasperException: /WEB-INF/jsp/content/manage.jsp(14,60) PWC6212: equal symbol expected
我也尝试过not eq
而不是!=
not equal to
的有效语法是什么?
答案 0 :(得分:123)
Either !=
or ne
will work,但您需要排除accessor syntax and nested quotes。
<c:if test="${content.contentType.name ne 'MCE'}">
<%-- snip --%>
</c:if>