我正在尝试检查方法调用的返回值是否在a中返回null Spring MVC power jsp页面。我正在努力寻找合适的语法。
<c:if test="${result.getFieldError("name") != null}"></c:if>
答案 0 :(得分:1)
使用单引号:
<c:if test='${result.getFieldError("name") != null}'></c:if>
您可以使用
<c:if test='${not empty result.getFieldError("name")}'></c:if>
答案 1 :(得分:1)
<c:if test="${not empty result.fieldError['name']}"></c:if>