用最原始的ajax向struts2的action发送请求,并且传递参数,action想ajax页面回传数据,怎么写啊
用最原始的ajax向struts2的action发送请求,并且传递参数,action想ajax页面回传数据,怎么写啊,struts2的配置文件怎么写啊,能给个例子吗...
用最原始的ajax向struts2的action发送请求,并且传递参数,action想ajax页面回传数据,怎么写啊,struts2的配置文件怎么写啊,能给个例子吗
展开
3个回答
展开全部
官方写法:
Struts 2 Stream result Action
package actions;
import java.io.InputStream;
import java.io.StringBufferInputStream;
import com.opensymphony.xwork2.ActionSupport;
public class TextResult extends ActionSupport {
private InputStream inputStream;
public InputStream getInputStream() {
return inputStream;
}
public String execute() throws Exception {
inputStream = new StringBufferInputStream("Hello World! This is a text string response from a Struts 2 Action.");
return SUCCESS;
}
}
Struts 2 Configuring the TextResult Action
<action name="text-result" class="actions.TextResult">
<result type="stream">
<param name="contentType">text/html</param>
<param name="inputName">inputStream</param>
</result>
</action>
注意要让<result type="stream">以及<param name="inputName">inputStream</param>
Struts 2 Stream result Action
package actions;
import java.io.InputStream;
import java.io.StringBufferInputStream;
import com.opensymphony.xwork2.ActionSupport;
public class TextResult extends ActionSupport {
private InputStream inputStream;
public InputStream getInputStream() {
return inputStream;
}
public String execute() throws Exception {
inputStream = new StringBufferInputStream("Hello World! This is a text string response from a Struts 2 Action.");
return SUCCESS;
}
}
Struts 2 Configuring the TextResult Action
<action name="text-result" class="actions.TextResult">
<result type="stream">
<param name="contentType">text/html</param>
<param name="inputName">inputStream</param>
</result>
</action>
注意要让<result type="stream">以及<param name="inputName">inputStream</param>
参考资料: http://struts.apache.org/2.x/docs/ajax.html
展开全部
配置文件:
<action name="ajax请求的路径" class="指定Action类" method="请求执行的方法">
</action>
public void 请求执行的方法(){
HttpServletResponse response = ServletActionContext.getResponse();
response.getWritter().print("传回的数据");
}
最后ajax通过回调函数回去传回的数据:
success(data){
data里就是刚才print打印的数据
}
因为很久没用原始的ajax了,所以不会写了,见谅
一般都喜欢用jquery的ajax...
<action name="ajax请求的路径" class="指定Action类" method="请求执行的方法">
</action>
public void 请求执行的方法(){
HttpServletResponse response = ServletActionContext.getResponse();
response.getWritter().print("传回的数据");
}
最后ajax通过回调函数回去传回的数据:
success(data){
data里就是刚才print打印的数据
}
因为很久没用原始的ajax了,所以不会写了,见谅
一般都喜欢用jquery的ajax...
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
response.getWriter().write("****");
页面上xmlHttp.responseText 即是action传回的参数,配置文件不需要新的配置
页面上xmlHttp.responseText 即是action传回的参数,配置文件不需要新的配置
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询