最佳答案
我试图只显示一些基于字符串是否不等于:
<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
的有效语法是什么?