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 部分式から空白を削除する方法を誰か教えてもらえますか?