1

我需要在 .jsp 页面上添加一个条件语句来标识所有经过身份验证的页面,以便在适当的位置插入特定的跟踪代码。我不习惯写任何jstl,但到目前为止我有这个

<c:if test='${not empty authenticatedUser}'>
  my  tagging code    
</c:if>

我想要一个排除特定网址的额外条件

4

2 回答 2

1

用这个 -

<c:if test="${not empty authenticatedUser && url ne 'someUrl.html'}">
    my  tagging code    
</c:if>

单引号来了两次。这可能会造成问题。

于 2013-09-02T15:48:00.543 回答
0

EL 表达式 (the ${not empty authenticatedUser}) 可以包含如下逻辑表达式:

<c:if test='${not empty authenticatedUser and url ne "someUrl.html"}'>
    my  tagging code    
</c:if>
于 2013-09-02T09:51:11.160 回答