Struts1.x系列教程(7):Logic标签库 - 编程入门网
uot;,"摄影"} %>"/> <logic:iterate id="s" name="form" property="hobbies"> <bean:write name="s"/> </logic:iterate> <br> <logic:iterate id="s" name="list" indexId="i"> list[<bean:write name="i"/>] = <bean:write name="s"/> </logic:iterate> <br> <logic:iterate id="s" name="iterator" indexId="i" offset="1"> list[<bean:write name="i"/>] = <bean:write name="s"/> </logic:iterate> <br> <logic:iterate id="entry" name="entrySet"> <bean:write name="entry" property="key"/> = <bean:write name="entry" property="value"/> </logic:iterate> </body> </html>
在IE中输入如下的URL测试iterate.jsp: http://localhost:8080/samples/iterate.jsp Struts1.x系列教程(7):Logic标签库(2)时间:2011-01-10二、条件处理标签 条件处理标签可分为如下三类: 1.Test: present、notPresent、empty、notEmpty、 messagesPresent、messagesNotPresent 2.比较:equal, lessThan, lessEqual, greaterThan和greaterEqual 3.字符串匹配: match、notMatch 所有的条件处理标签都有name和property属性。分别用来指定对象名和属性名。如下面的代码演示了<logic:empty>和<logic:lessThan>标签的使用: <logic:empty name="var"> var为空 </logic:empty> <logic:lessThan name="employee" property="age" value="18"> 不符合工作年龄 </logic:lessThan> 三、流控制标签(redirect和forward) <logic:redirect>用于重定向到其他的Web资源。用法如下: <logic:redirect href="http://www.sina.com.cn"/> <logic:forward>标签用于把当前的请求转发给其他的静态资源、JSP页或Servlet。在功能和使用上和<jsp:forward>类似。 关于Logic标签库的更详细的信息请读者参阅Struts的官方网站,URL如下: http://struts.apache.org/1.2.9/userGuide/struts-logic.html |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |