Struts2 处理AJAX请求
2019-12-28 11:56:50来源:博客园 阅读 ()
Struts2 处理AJAX请求
Struts2整合AJAX有2种方式:
- 使用type="stream"类型的<result>
- 使用JSON插件
使用type="stream"类型的<result> 获取text
前端
<body> <form> 学号:<input type="text" id="no"><br /> 姓名:<input type="text" id="name"><br /> <button type="button" id="btn">查询成绩</button> </form> <p id="score"></p> <script src="js/jquery-3.4.1.min.js"></script> <script> $("#btn").click(function () { $.ajax({ url:"HandlerAction", type:"get", data:{"no":$("#no").val(),"name":$("#name").val()}, dataType:"text", error:function () { console.log("ajax请求失败!") }, success:function (data) { $("#score").text(data); } }) }); </script> </body>
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
<struts> <package name="action" namespace="/" extends="struts-default"> <action name="HandlerAction" class="action.HandlerAction"> <result name="success" type="stream"> <!-- 设置返回给浏览器的数据类型 --> <param name="contentType">text/html</param> <!--指定获取InputStream的方法,getInputStream(),约定:去掉get,后面部分使用camel写法 --> <param name="inputName">inputStream</param> </result> </action> </package> </struts>
流程分析
- 前端向后台发送ajax请求,传递no、name2个字段
- JVM创建action实例,调用no、name对应的setter方法把前端传过来的值赋给成员变量(会自动转换为目标类型),完成action的初始化
- JVM调用action处理业务的方法execute,设置向浏览器返回的数据
- JVM根据struts.xml中<result>指定的方法(getInputStream),获取InputSteam,将里面的数据传给浏览器。
使用type="stream"类型的<result> 获取json
前端
<body> <form> 学号:<input type="text" id="no"><br /> <button type="button" id="btn">查询学生信息</button> </form> <div id="show"></div> <script src="js/jquery-3.4.1.min.js"></script> <script> $("#btn").click(function () { $.ajax({ url:"HandlerAction", type:"post", data:{"no":$("#no").val()}, dataType:"json", error:function () { console.log("ajax请求失败!") }, success:function (data) { $("#show").append("姓名:" + data.name+","); $("#show").append("年龄:" + data.age+","); $("#show").append("成绩:" + data.score+"。"); } }) }); </script> </body>
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
前端
<body> <form> 学号:<input type="text" id="no"><br /> <button type="button" id="btn">查询学生信息</button> </form> <div id="show"></div> <script src="js/jquery-3.4.1.min.js"></script> <script> $("#btn").click(function () { $.ajax({ url:"HandlerAction", type:"post", data:{"no":$("#no").val()}, dataType:"json", error:function () { console.log("ajax请求失败!") }, success:function (data) { $("#show").append("姓名:" + data.student.name+","); $("#show").append("年龄:" + data.student.age+","); $("#show").append("成绩:" + data.student.score+"。"); } }) }); </script> </body>
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
<struts> <package name="example" namespace="/" extends="json-default"> <action name="HandlerAction" class="action.HandlerAction"> <!--type="json"的result,可以缺省name属性,当然写上也行--> <result type="json"> <param name="noCache">true</param> <!-- 设置返回给浏览器的数据类型 --> <param name="contentType">text/html</param> </result> </action> </package> </struts>
说明
需要手动添加JSON插件 struts2-json-plugin.jar 。
上面的压缩包含有struts的所有jar包,其中就包括了struts2-json-plugin.jar。
下面的压缩包只有struts核心的8个jar包。
原文链接:https://www.cnblogs.com/chy18883701161/p/12112589.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:Java 高效代码50例
下一篇:如何成为一名全栈工程师?
- Spring Cloud Gateway 全局通用异常处理 2020-06-08
- 聊聊 OAuth 2.0 的 Token 续期处理 2020-06-08
- 架构设计 | 异步处理流程,多种实现模式详解 2020-06-04
- SpringCloud异常处理统一封装我来做-使用篇 2020-05-23
- 字符串 2020-05-18
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash