欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Struts2 处理AJAX请求

程序员文章站 2022-10-24 19:32:33
Struts2整合AJAX有2种方式: 使用type="stream"类型的 使用JSON插件 使用type="stream"类型的 获取text 前端
学号:
姓名:

 

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 。

Struts2  处理AJAX请求

上面的压缩包含有struts的所有jar包,其中就包括了struts2-json-plugin.jar。

下面的压缩包只有struts核心的8个jar包。