0

我正在使用 struts 标记在 Jsp 中迭代 Vo,在其中我得到一个整数值

<struts_logic:iterate id="usersVO" indexId="index" name="data" type="utils.vo.UsersVO">

<td class="tabletext"><struts_bean:write name="usersVO" property="userType"/></td>

这里 userType 是一个 int 值。我怎样才能得到这个值

<%
  int x = **here**
%>

所以我可以处理它以供显示。

或者是否有任何其他方式可以显示 String 值取决于即将到来的 int 值?

4

2 回答 2

1

听起来你应该这样做<c:choose>。例如:

<c:choose>
    <c:when test="${usersVO.userType==1}">
        <p>User type is 1</p>
    </c:when>
    <c:when test="${usersVO.userType==2}">
        <p>etc</p>
    </c:when>
   <c:otherwise>
       <p>User type is unknown</p>
   </c:otherwise>
</c:choose>
于 2012-09-21T09:03:31.603 回答
0

我使用 struts logic:equal 标签来做到这一点,它对我来说很好用

<struts_logic:equal name="usersVO" property="userType" value="0">
   <struts_bean:message key ="usermanagement.NotAuthorization"/>                    
</struts_logic:equal>
<struts_logic:equal name="usersVO" property="userType" value="1">
   <struts_html:link page="/anzeige.do" paramId="authorization" paramName="usersVO" paramProperty="userName" style="text-decoration: none;">
      <struts_bean:message key ="usermanagement.Authorization" />
   </struts_html:link>
</struts_logic:equal>
于 2012-10-03T11:19:40.027 回答