출처: http://www.zulutown.com/blog/2009/01/21/accessing-current-item-properties-in-a-struts2-iterator/
<s:iterator value="myList" status="status" id="item" >
<s:property value="%{attr.item.name}"/> Doesn't work
<s:property value="%{#attr.item.name}"/> Works
<s:property value="attr.item.name"/> Doesn't work
<s:property value="#attr.item.name"/> Works
<s:property value="item.name"/> Doesn't work
<s:property value="name"/> Works
<s:property value="#attr.item.name"/> Works
</s:iterator>
'프로그래밍 > Framework' 카테고리의 다른 글
[iBatis] 동적쿼리문 생성 (0) | 2009.04.13 |
---|---|
[Struts2] <s:select> 사용법 (0) | 2009.04.10 |
[Struts2] result의 type 속성 (0) | 2009.04.08 |
[Struts2] 팁: Action에서 멤버변수로 jsp에 넘긴 값도 request.getAttribute()로 받을 수 있다. (0) | 2009.04.08 |
[Struts2] 링크들 (0) | 2009.04.07 |