Struts2如何处理AJAX请求
本文小编为大家详细介绍“Struts2如何处理AJAX请求”,内容详细,步骤清晰,细节处理妥当,希望这篇“Struts2如何处理AJAX请求”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。
盐田ssl适用于网站、小程序/APP、API接口等需要进行数据传输应用场景,ssl证书未来市场广阔!成为创新互联建站的ssl证书销售渠道,可以享受市场价格4-6折优惠!如果有意向欢迎电话联系或者加微信:18980820575(备注:SSL证书合作)期待与您的合作!
Struts2 处理AJAX请求
Struts2整合AJAX有2种方式:
使用type="stream"类型的
使用JSON插件
使用type="stream"类型的
前端
url要和struts.xml中action的name、包的namespace对应。
action
public class HandlerAction extends ActionSupport { private int no; private String name; private InputStream inputStream; public int getNo() { return no; } public void setNo(int no) { this.no = no; } public String getName() { return name; } public void setName(String name) { this.name = name; } public InputStream getInputStream() { return inputStream; } public void setInputStream(InputStream inputStream) { this.inputStream = inputStream; } @Override public String execute() throws Exception { //此处缺省连接数据库查询总分 String result = name + "同学,你的总分是:680"; //设置要返回的数据。我们传给浏览器的数据含有中文,需要设置utf-8编码,来解决中文乱码 inputStream=new ByteArrayInputStream(result.getBytes("utf-8")); return SUCCESS; } }
前端向后台发送了2个字段:no、name
action需要设置2个同名的成员变量,并提供对应的getter、setter方法,才能接收到前端传来的数据。
需要一个InputStream类型的成员变量,并提供对应的getter、setter,用于向浏览器返回数据。
需要一个处理请求的方法(execute),设置返回给浏览器的数据。
struts.xml
text/html inputStream
流程分析
前端向后台发送ajax请求,传递no、name2个字段
JVM创建action实例,调用no、name对应的setter方法把前端传过来的值赋给成员变量(会自动转换为目标类型),完成action的初始化
JVM调用action处理业务的方法execute,设置向浏览器返回的数据
JVM根据struts.xml中
指定的方法(getInputStream),获取InputSteam,将里面的数据传给浏览器。
使用type="stream"类型的
前端
action
public class HandlerAction extends ActionSupport { private int no; private InputStream inputStream; public int getNo() { return no; } public void setNo(int no) { this.no = no; } public InputStream getInputStream() { return inputStream; } public void setInputStream(InputStream inputStream) { this.inputStream = inputStream; } @Override public String execute() throws Exception { //此处缺省连接数据库查询得到学生信息 Student student = new Student(1, "张三", 20, 100); String jsonStr = JSON.toJSONString(student); //设置要返回的数据 inputStream=new ByteArrayInputStream(jsonStr.getBytes("utf-8")); return SUCCESS; } }
使用了阿里的fastjson.jar,需要自己下载引入。
struts.xml
配置同上
使用JSON插件实现AJAX
前端
action
public class HandlerAction extends ActionSupport { private int no; private Student student; public int getNo() { return no; } public void setNo(int no) { this.no = no; } public Student getStudent() { return student; } public void setStudent(Student student) { this.student = student; } @Override public String execute() throws Exception { //此处缺省连接数据库查询得到学生信息 student = new Student(1, "张三", 20, 100); return SUCCESS; } }
需要设置同名的成员变量,并提供getter、setter方法,来接收前端传来的数据。
此种方式是由JSON插件把action对象序列化为一个JSON格式的字符串,传给浏览器。浏览器可以直接访问action的所有成员变量(实质是调用对应的getter方法)。
我们只需要把ajax要请求的数据封装为action的成员变量,并提供对应的getter、setter方法。需要在主调方法(execute)的return语句之前对请求的数据赋值。
success:function (data) { $("#show").append("姓名:" + data.student.name+","); $("#show").append("年龄:" + data.student.age+","); $("#show").append("成绩:" + data.student.score+"。"); }
浏览器接受到的数据data本身就是action实例,可通过.访问成员变量。
struts.xml
true text/html
说明
需要手动添加JSON插件 struts2-json-plugin.jar 。
上面的压缩包含有struts的所有jar包,其中就包括了struts2-json-plugin.jar。
下面的压缩包只有struts核心的8个jar包。
读到这里,这篇“Struts2如何处理AJAX请求”文章已经介绍完毕,想要掌握这篇文章的知识点还需要大家自己动手实践使用过才能领会,如果想了解更多相关内容的文章,欢迎关注创新互联行业资讯频道。
当前题目:Struts2如何处理AJAX请求
文章位置:http://abwzjs.com/article/igihsi.html