7、SpringMVC: Ajax技术

1、简介

回顾springmvc创建流程

1、新建一个module导入web支持!

2、配置web.xml文件

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
         version="4.0">

    <!-- 配置前端控制器 -->
    <servlet>
        <servlet-name>DispatcherServlet</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath:spring-mvc.xml</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>DispatcherServlet</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>

    <!-- 配置前端控制器 -->
    <filter>
        <filter-name>encoding</filter-name>
        <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
        <init-param>
            <param-name>encoding</param-name>
            <param-value>utf-8</param-value>
        </init-param>
    </filter>
    <filter-mapping>
        <filter-name>encoding</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

</web-app>

3、配置spring-mvc.xml文件

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context.xsd
       http://www.springframework.org/schema/mvc
       http://www.springframework.org/schema/mvc/spring-mvc.xsd">

    <!--  自动扫描包,将所有注解类交给IOC容器管理  -->
    <context:component-scan base-package="com.jl.controller"/>

    <!-- 开启mvc的注解驱动-->
    <mvc:annotation-driven/>

    <bean id="internalResourceViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/views"/>
        <property name="suffix" value=".jsp"/>
    </bean>

</beans>

4、编写一个controller进行测试,查看配置是否正确

@Controller
public class AjaxController {

    @RequestMapping("/test")
    @ResponseBody
    public String test(){
        return "hello";
    }
}

测试结果:

在这里插入图片描述

2、编写一个 ajax-frame.html 使用 iframe 测试,感受下效果

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title>测试</title>
</head>
<body>

<script type="text/javascript">

    function go(){
        var url =  document.getElementById('url').value;
        console.log(url);
        // 所有的变量,需要提前获取
        document.getElementById("iframe").src = url;
    }

</script>

<div>
    <p>请输入要加载的地址:</p>
    <p>
        <input id="url" type="text" value=""/>
        <input type="button" value="提交" onclick="go()">
    </p>
</div>

<div>
    <h3>加载页面位置:</h3>
    <iframe id="iframe" style="width: 100%;height: 500px;"></iframe>
</div>

</body>
</html>

结果展示:

在这里插入图片描述

3、jQuery.ajax(重点关注)

Ajax的核心是XMLHttpRequest对象(XHR)。XHR为向服务器发送请求和解析服务器响应提供了接口。能够以异步方式从服务器获取新数据。

jQuery.ajax(...)
  部分参数:
        url:请求地址
        type:请求方式,GET、POST(1.9.0之后用method)
    headers:请求头
        data:要发送的数据
contentType:即将发送信息至服务器的内容编码类型(默认: "application/x-www-form-urlencoded; charset=UTF-8")
  beforeSend:发送请求前执行的函数(全局)
    complete:完成之后执行的回调函数(全局)
    success:成功之后执行的回调函数(全局)
      error:失败之后执行的回调函数(全局)
    accepts:通过请求头发送给服务器,告诉服务器当前客户端可接受的数据类型
    dataType:将服务器端返回的数据转换成指定类型
      "xml": 将服务器端返回的内容转换成xml格式
      "text": 将服务器端返回的内容转换成普通文本格式

1、编写一个AjaxController

    @RequestMapping("/a1")
    @ResponseBody
    public void a1(String name, HttpServletResponse response) throws IOException {
        System.out.println(name);
        if ("jl".equals(name)){
            response.getWriter().print("true");
        }else {
            response.getWriter().print("false");
        }
    }

2、index.jsp页面

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
  <head>
    <title>$Title$</title>
    <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
</head>
  <body>
    <script>
       function a1(){
           $.post({
              url:"${pageContext.request.contextPath}/a1",
              data:{'name':$("#userName").val()},
              success:function (data,status) {
                   alert(data);
                   alert(status);
              },
              error:function () {

              }
           });
        }
    </script>

  <%--onblur:失去焦点触发事件--%>
  用户名:<input type="text" id="userName" onblur="a1()"/>

  </body>
</html>

3、启动tomcat测试!

打开浏览器的控制台,当我们鼠标离开输入框的时候,可以看到发出了一个ajax的请求!是后台返回给我们的结果!测试成功!

4、Springmvc实现Ajax

1、编写一个controller

    // 获取User
    @RequestMapping("/a2")
    @ResponseBody
    public List<User> a2(){
        List<User> userList = new ArrayList<>();

        userList.add(new User("哈哈",1,"男"));
        userList.add(new User("哈哈哈哈",20,"女"));
        userList.add(new User("呵呵呵",7,"男"));

        return userList;
    }

2、编写test.jsp页面

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Title</title>
    <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>

    <script>
        $(function () {
            $("#btn").click(function () {
                $.post("${pageContext.request.contextPath}/a2",function (data) {
                        // console.log(data);
                    var html="";
                    for (var i = 0; i <data.length ; i++) {
                        html+= "<tr>" +
                            "<td>" + data[i].name + "</td>" +
                            "<td>" + data[i].age + "</td>" +
                            "<td>" + data[i].sex + "</td>" +
                            "</tr>"
                    }

                    $("#content").html(html);
                })
            })
        });
    </script>
</head>
<body>

    <input type="button" value="加载数据" id="btn"><br/>
    <table>
        <tr>
            <td>姓名</td>
            <td>年龄</td>
            <td>性别</td>
        </tr>
        <tbody id="content">
            <%--  后台数据 --%>
        </tbody>
    </table>
</body>
</html>

5、注册提示效果

1、编写一个controller

    @RequestMapping("/a3")
    @ResponseBody
    public String a3(String name,String pwd){
        String msg="";
        if (name != null){
            if ("admin".equals(name)){
                msg = "OK";
            }else {
                msg = "用户名输入有误";
            }
        }
        if (pwd != null){
            if ("123456".equals(pwd)){
                msg = "OK";
            }else {
                msg = "密码输入有误";
            }
        }
        return msg;
    }

2、编写login.jsp页面

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Title</title>
    <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>

    <script>
        function a1(){
            $.post({
                url:"${pageContext.request.contextPath}/a3",
                data:{'name':$("#name").val()},
                success:function (data) {
                    if (data.toString()=='OK'){
                        $("#userInfo").css("color","green");
                    }else {
                        $("#userInfo").css("color","red");
                    }
                    $("#userInfo").html(data);
                }
            });
        }
        function a2(){
            $.post({
                url:"${pageContext.request.contextPath}/a3",
                data:{'pwd':$("#pwd").val()},
                success:function (data) {
                    if (data.toString()=='OK'){
                        $("#pwdInfo").css("color","green");
                    }else {
                        $("#pwdInfo").css("color","red");
                    }
                    $("#pwdInfo").html(data);
                }
            });
        }
    </script>

</head>
<body>
    <p>
     用户名:   <input type="text" id="name" onblur="a1()">
        <span id="userInfo"></span>
    </p>
    <p>
     密码:   <input type="text" id="pwd" onblur="a2()">
        <span id="pwdInfo"></span>
    </p>
</body>
</html>

效果:

在这里插入图片描述
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值