随处飘荡
BlogJava
首页
新随笔
联系
聚合
管理
posts - 3, comments - 0, trackbacks - 0
2009年6月17日
struts2.0 标签使用
项目中使用到struts2.0,边学边用,灵活运用标签,会使jsp更方便,简捷。
1. 从java端返回String[] 数组。
pcTitle 是字符数组
<s:iterator value="pcTitle" id="pctitle" status="list">
<td align="center" class="weather_title" ><s:property value="pcTitle[${list.index}]"/></td>
</s:iterator>
2.从java端返回List<Object>
<s:iterator value="pcKeyList" id="keyList" status="count">
<s:iterator value="#keyList" id="keyView" status="count">
<s:property value="#keyView.id"/> // keyView是List的Object对象
</s:iterator>
</s:iterator>
3.从java端返回List<List<Object>>
跟2 类似,再嵌套一层循环。
4. if 判断条件
<
s:set
name
="name"
value
="<%= "
'" + request.getParameter("name") + "'" %
>
" />
<
s:if
test
="#name == 'Max'"
>
Max's file here
</
s:if
>
<
s:elseif
test
="#name == 'Scott'"
>
Scott's file here
</
s:elseif
>
<
s:else
>
Other's file here
</
s:else
>
posted @
2009-06-17 11:10
一叶方舟 阅读(149) |
评论 (0)
|
编辑
收藏
<
2009年6月
>
日
一
二
三
四
五
六
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
1
2
3
4
5
6
7
8
9
10
11
常用链接
我的随笔
我的评论
我的参与
留言簿
给我留言
查看公开留言
查看私人留言
随笔分类
Flex(actionScript 3.0)(1)
java技术(2)
随笔档案
2009年6月 (2)
收藏夹
FusionCharts 的XML标签属性(2)
搜索
最新评论
阅读排行榜
1. Flex的内存优化(1308)
2. struts2.0 标签使用(149)
评论排行榜
1. struts2.0 标签使用(0)
2. Flex的内存优化(0)