首页 > 代码库 > 【web开发学习笔记】Struts-Tags学习笔记1 - 通用标签和控制标签
【web开发学习笔记】Struts-Tags学习笔记1 - 通用标签和控制标签
通用标签和控制标签
第一部分;代码
//前端 <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=GB18030" /> <title>Insert title here</title> </head> <body> 访问属性 <a href=http://www.mamicode.com/"/tags.action?username=u&password=p">tags>//struct.xml <constant name="struts.ui.theme" value=http://www.mamicode.com/"simple" />>//类包 package com.struts2.tags; import com.opensymphony.xwork2.ActionSupport; public class TagsAction extends ActionSupport { private String password; private String username; public TagsAction() { } public String execute() { this.addFieldError("fielderror.test", "wrong!"); return SUCCESS; } public String getPassword() { return password; } public String getUsername() { return username; } public void setPassword(String password) { this.password = password; } public void setUsername(String username) { this.username = username; } }//展示 </head> <body> <ol> <li>property: <s:property value=http://www.mamicode.com/"username"/> >第二部分:分析
前端:<a href=http://www.mamicode.com/"/tags.action?username=u&password=p">tags点击之后,传递了给
tag.action两个参数username和password。
-> struct.xml配置,调用TagsAction.java类,初始化对象,并对对象设置初值。<package name="tags" extends="struts-default"> <action name="tags" class="com.struts2.tags.TagsAction"> <result>/tags.jsp</result> </action> </package>-> 根据struct.xml配置的结果信息,将结果传递到<result>/tags.jsp</result>中说明的tag.jsp中进行显示,并通过标签进
行取值操作;第三部分:通用标签操作
property标签: <li>property: <s:property value=http://www.mamicode.com/"username"/> >分析:
property 取值为字符串: <s:property value=http://www.mamicode.com/"‘username‘"/>,当标签中的s:proerty中的值为双引号里面加上单引号时,表
示将单引号里面的值当做字符串进行处理。set标签: <li>set 设定adminName值(默认为request 和 ActionContext): <s:set var="adminName" value=http://www.mamicode.com/"username" /> >分析:
在set里面可以设置作用范围值:scope
scope 默认为action,可以取得的scope有五个:The scope in which to assign the variable. Can be application,
session, request, page, or action.bean标签: <li>bean 定义bean,并使用param来设定新的属性值: <s:bean name="com.struts2.tags.Dog" > <s:param name="name" value=http://www.mamicode.com/"'pp'">>分析:
bean标签
参数name的类型为String,作用是The class name of the bean to be instantiated (must respect JavaBean
specification),定义一个需要实例化的类。
取值的方法:都是以#开头,家伙是哪个变量名称
#adminPassword
#session.adminPassword
#myDog.name
注意一下两种不同:
<s:bean name="com.struts2.tags.Dog" >
s:bean执行开始时,会构造一个对象入栈到栈顶,执行完毕之后从栈顶取出。
<s:bean name="com.struts2.tags.Dog" var="myDog">
执行之后放在Stack Contextinclude标签 <s:set var="incPage" value=http://www.mamicode.com/"%{'/_include1.html'}" />>%{}作用:将其强制转为ognl表达式;第四部分:控制标签操作
<hr /> <li>if elseif else: age = <s:property value=http://www.mamicode.com/"#parameters.age[0]" />
>通过set设置短名称;第五部分:遍历标签
<li>遍历集合:<br /> <s:iterator value=http://www.mamicode.com/"{1, 2, 3}" >> 分析:字符串集合,var = "x"相当于for循环里面定义的临时变量,集合中的每个值取出来,每循环一次把值放到x里面。利用#进行访问就可以。<li>使用status:<br /> <s:iterator value=http://www.mamicode.com/"{'aaa', 'bbb', 'ccc'}" status="status">> 分析:status作用If specified, an instanceof IteratorStatus will be pushed into stack upon each iteration
s:property取出循环的当前值。通过对status取值,来得到循环情况<li> <s:iterator value=http://www.mamicode.com/"#{1:'a', 2:'b', 3:'c'}" >> 分析:定义map时,需要在前面加上#;
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。