我需要在 .jsp 页面上添加一个条件语句来标识所有经过身份验证的页面,以便在适当的位置插入特定的跟踪代码。我不习惯写任何jstl,但到目前为止我有这个
<c:if test='${not empty authenticatedUser}'>
my tagging code
</c:if>
我想要一个排除特定网址的额外条件
我需要在 .jsp 页面上添加一个条件语句来标识所有经过身份验证的页面,以便在适当的位置插入特定的跟踪代码。我不习惯写任何jstl,但到目前为止我有这个
<c:if test='${not empty authenticatedUser}'>
my tagging code
</c:if>
我想要一个排除特定网址的额外条件
用这个 -
<c:if test="${not empty authenticatedUser && url ne 'someUrl.html'}">
my tagging code
</c:if>
单引号来了两次。这可能会造成问题。
EL 表达式 (the ${not empty authenticatedUser}
) 可以包含如下逻辑表达式:
<c:if test='${not empty authenticatedUser and url ne "someUrl.html"}'>
my tagging code
</c:if>