1
A
答えて
8
のJava
public class YourFormBean{
private List<String> listOfString;
//setter & getters
}
JSP
<s:iterator value="listOfString" status="statusVar">
<tr>
<td><s:property/></td>
</tr>
</s:iterator>
0
Iterator will iterate over a value. An iterable value can be any of: java.util.Collection, java.util.Iterator, java.util.Enumeration, java.util.Map, or an array.
<table border="0" cellspacing="1" cellpadding="0" width="100%" class="boxtbl">
<s:iterator value="listOfString" status="strVal">
<tr>
<td><s:property/></td>
</tr>
</s:iterate>
</table>
status If specified, an instanceof IteratorStatus will be pushed into stack upon each iteration
関連する問題
- 1. Struts2タグの属性内のStruts2イテレータのインクリメント値<s:form>
- 2. リストのセグメンテーションフォールト<Object*>イテレータ
- 3. Struts2 <s:select/>とHashMapのリスト
- 4. イテレータ内のStruts2条件付きチェック
- 5. struts2のイテレータ外で値を取得する方法
- 6. <<ベクトルペアのイテレータ
- 7. STLリスト<Object>リスト内のオブジェクトを変更するイテレータ
- 8. リストを作成<T>イテレータからのインスタンス<T>
- 9. リストのC++イテレータ
- 10. リストのC++イテレータ
- 11. Struts2リストの検証
- 12. struts2 <s:select
- 13. Struts2の<S:doubleselect>
- 14. リストと二項の両方のイテレータ。
- 15. イテレータとリスト
- 16. struts2 <s:select...>タグ
- 17. Struts2の/ JSP - リストのリストである
- 18. 異なるタイプのドロップダウンを入れるためのStruts2イテレータ
- 19. イテレータを使用した後方リストの反復
- 20. のstd ::リスト<std::string> ::イテレータはstd ::文字列にする
- 21. javascriptを使ってstruts2イテレータ内の入力値を変更する
- 22. struts2チェックボックスはリストに 'false'とnullを返します<String>
- 23. イテレータ<?>は、java
- 24. イテレータのリスト理解のパフォーマンス
- 25. のstd ::ベクトル< T > ::イテレータ
- 26. リンクされたリストとイテレータ
- 27. struts2 ssl pluginとjson pluginの両方の使い方
- 28. struts 2でリストとイテレータを使用せずにアクションクラスから値を<s:hidden >に設定する方法は?
- 29. Struts2無効<s:textfield>一部の表現を使用
- 30. ハウツー使用Struts2の
正式なdocs.checkをチェックする方が良いとのことです。[Iterator](http://struts.apache.org/2.3.1/docs/iterator.html) –