首页 > 代码库 > 【web开发学习笔记】Structs2 Result学习笔记(三)带参数的结果集

【web开发学习笔记】Structs2 Result学习笔记(三)带参数的结果集

Result学习笔记(三)带参数的结果集

第一部分:代码

//前端
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030" />
	<title>Insert title here</title>
</head>
	<body>
	<ol>
		<li><a href=http://www.mamicode.com/"user/user?type=1">传参数>
//web.xml
<struts>
    <constant name="struts.devMode" value=http://www.mamicode.com/"true" />>
//类包
package com.struts2.user.action;
import com.opensymphony.xwork2.ActionSupport;
public class UserAction extends ActionSupport {
	private int type;
	
	public int getType() {
		return type;
	}


	public void setType(int type) {
		this.type = type;
	}


	@Override
	public String execute() throws Exception {
		return "success";
	}
}

//展示
</head>
	<body>
		User Success!
		from valuestack: <s:property value=http://www.mamicode.com/"t"/>
>

第二部分:分析

1.<li><a href=http://www.mamicode.com/"user/user?type=1">传参数,链接访问user命名空间里面的user action,并对action传递参数type = 1;
2.<package name="user" namespace="/user" extends="struts-default">
	  <action name="user" class="com.struts2.user.action.UserAction">
		    <result type="redirect">/user_success.jsp?t=${type}</result>
	  </action>	    
  </package> 
  <result type="redirect">/user_success.jsp?t=${type}</result>
  目的:
    跟据配置文件构造user action对象,并进行设置参数。由客户端发出请求后,由web.xml的配置文件构造UserAction对象时,请求中出传递的数值会传递到构造的对象中。注意:一次request只有一个值栈.
    result要求<result type="redirect">/user_success.jsp?t=${type}</result>,要求重定向到到user_success.jsp,并要求去除
action中的type值。其中type="redirect"表示是客户端跳转,

3.from valuestack: <s:property value=http://www.mamicode.com/"t"/>
//从值栈取值>