您的位置:首页 > 编程语言 > Java开发

struts2中的标签iterator使用

2014-05-08 16:03 357 查看
 

我有一个用户列表,需要在jsp页面上显示每个用户的姓名和密码,怎么弄呢

如下 ,标签的value对应用户的各个字段,userList对应action中定义的List 

<table> <tr> <td>姓名</td> <td>密码</td> </tr>
<s:iterator value="userList">
<tr>
<td> <s:property value="username"/> </td>
<td> <s:property value="password"/> </td>
</tr>
</s:iterator>
</table>  //按表格形式显示
<s:form action="testAction" >
<s:submit value="提交"></s:submit>
</s:form>


后台action这样写

public void setUserList(List<User> userList)
{
this.userList=userList;
}
public List<User> getUserList(){
return this.userList;
}

下面是iterator的用法

iterator


Description

Iterator will iterate over a value. An iterable value can be either of: java.util.Collection, java.util.Iterator,


Parameters

Name

Required

Default

Evaluated

Type

Description

idfalse falseStringDeprecated. Use 'var' instead
statusfalsefalsefalseBooleanIf specified, an instanceof IteratorStatus will be pushed into stack upon each iteration
valuefalse falseStringthe iteratable source to iterate over, else an the object itself will be put into a newly created List
varfalse falseStringName used to reference the value pushed into the Value Stack


Examples

The following example retrieves the value of the getDays() method of the current object on the value stack and uses it to iterate over. The <s:property/> tag prints out the current value of the iterator.

<s:iterator value="days">
<p>day is: <s:property/> </p>
</s:iterator>

The following example uses a Bean tag and places it into the ActionContext. The iterator tag will retrieve that object from the ActionContext and then calls its getDays() method as above. The status attribute is also used to create a IteratorStatus object,
which in this example, its odd() method is used to alternate row colours:

<s:bean name="org.apache.struts2.example.IteratorExample" var="it">
<s:param name="day" value="'foo'"/>
<s:param name="day" value="'bar'"/>
</s:bean>
<p/>
<table border="0" cellspacing="0" cellpadding="1">
<tr> <th>Days of the week</th> </tr>
<p/>
<s:iterator value="#it.days" status="rowstatus">
<tr> <s:if test="#rowstatus.odd == true">
<td style="background: grey"><s:property/></td>
</s:if>
<s:else>
<td><s:property/></td>
</s:else> </tr>
</s:iterator>
</table>

The next example will further demonstrate the use of the status attribute, using a DAO obtained from the action class through OGNL, iterating over groups and their users (in a security context). The last() method indicates if the current object is the last
available in the iteration, and if not, we need to seperate the users using a comma:

<s:iterator value="groupDao.groups" status="groupStatus">
<tr class="<s:if test="#groupStatus.odd == true ">odd</s:if><s:else>even</s:else>" >
<td><s:property value="name" /></td>
<td><s:property value="description" /></td>
<td>
<s:iterator value="users" status="userStatus">
<s:property value="fullName" />
<s:if test="!#userStatus.last">,
</s:if>
</s:iterator>
</td>
</tr>
</s:iterator>

The next example iterates over a an action collection and passes every iterator value to another action. The trick here lies in the use of the '[0]' operator. It
takes the current iterator value and passes it on to the edit action. Using the '[0]' operator has the same effect as using >s:property />. (The latter, however, does not work from inside the param tag).

<s:action name="entries" var="entries"/>
<s:iterator value="#entries.entries" >
<s:property value="name" />
<s:property />
<s:push value="...">
<s:action name="edit" var="edit" >
<s:param name="entry" value="[0]" />
</s:action>
</push>
</s:iterator>


To simulate a simple loop with iterator tag, the following could be done. It does the loop 5 times.

<s:iterator status="stat" value="{1,2,3,4,5}" >
<!-- grab the index (start with 0 ... ) -->
<s:property value="#stat.index" />
<!-- grab the top of the stack which should be the -->
<!-- current iteration value (0, 1, ... 5) -->
<s:property value="top" />
</s:iterator>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: