检查struts2中的属性值

发布于 2024-12-02 05:15:25 字数 411 浏览 1 评论 0原文

我当前已通过像这样使用存储在会话中的登录用户对象(userId、organizationId 等)。

session.setAttribute("user", LoginUser);

我的 LoginUser 是带有详细信息的用户对象。

在我的下一个 jsp 页面中,我想通过从 Session 调用来检查用户的organizationId。

<s:property value="%{#session.user.organisationId}"/>

如何检查属性值中的organizationId是否为0或等,并根据不同的ID进行操作?

如何使用 c:choose 进行检查?

谢谢。

I have currently login User object (userId,organisationId,etc.. ) stored in session by using like this.

session.setAttribute("user", LoginUser);

Where my LoginUser is User object with detail information.

In my next jsp page, I want to check the user's organisationId by calling from Session.

<s:property value="%{#session.user.organisationId}"/>

How can I check the organisationId in property value is 0 or etc., and do things according to various IDs?

How can I check using c:choose?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

心奴独伤 2024-12-09 05:15:25
<c:choose>
  <c:when test="${user.organizationId == 1}">
        <!-- do something -->
  </c:when>
  <c:otherwise>
        <!-- do something different -->
  </c:otherwise>
</c:choose>
<c:choose>
  <c:when test="${user.organizationId == 1}">
        <!-- do something -->
  </c:when>
  <c:otherwise>
        <!-- do something different -->
  </c:otherwise>
</c:choose>
橙味迷妹 2024-12-09 05:15:25

使用 JSTL, 条件标记:

<c:if test="${sessionScope.user.organisationId == 0}">

</c:if>

或使用 条件标记:

<c:choose>
    <c:when test="${sessionScope.user.organisationId == 0}">
        <!-- true -->
    </c:when>
    <c:otherwise>
        <!-- false -->
    </c:otherwise>
</c:choose>

Using JSTL, either <c:if> conditional tag:

<c:if test="${sessionScope.user.organisationId == 0}">

</c:if>

Or using <c:choose> conditional tag:

<c:choose>
    <c:when test="${sessionScope.user.organisationId == 0}">
        <!-- true -->
    </c:when>
    <c:otherwise>
        <!-- false -->
    </c:otherwise>
</c:choose>
冷弦 2024-12-09 05:15:25
<s:if test="#session.user.organisationId == 0">
 <p>I'm Zero.</p>
</s:if>
<s:elseif test="#session.user.organisationId == 1">
 <p>I am One.</p>
</s:elseif>
<s:else>
    <p>I not either of these things.</p>
</s:else>

OrganizationId 必须是数字类型。

<s:if test="#session.user.organisationId == 0">
 <p>I'm Zero.</p>
</s:if>
<s:elseif test="#session.user.organisationId == 1">
 <p>I am One.</p>
</s:elseif>
<s:else>
    <p>I not either of these things.</p>
</s:else>

organisationId must be a numeric type.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文