我在JSP页面中有以下行:
<c:if test="${postAuditBean.postAudit.authority == authority.value}">
我希望将此比较更改为在比较之前从左手和右手表达式中首先修剪前导和尾随空格......如下所示:
<c:if test="${trim(postAuditBean.postAudit.authority) == trim(authority.value)}">
我试过了:
<c:if test="${fn:trim(postAuditBean.postAudit.authority) == fn:trim(authority.value)}">
在JSP页面中生成解析错误。
有谁能告诉我如何修剪JSTL子表达式中的空白?