Home > Web Front-end > JS Tutorial > body text

How to implement the asynchronous function of AJAX

零到壹度
Release: 2018-04-08 17:19:56
Original
2190 people have browsed it


This article will share with youHow to implement the asynchronous function of AJAX, very detailed and practical, suitable for JavaScript beginners, please refer to it if you need it.

A small experiment about the asynchronous function of AJAX

In order to experiment with the asynchronous nature of ajax

, first build a Web project, the structure is probably like this

How to implement the asynchronous function of AJAX

TestServlet.java (mainly a program that provides ajax background calls)

import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 * Servlet implementation class TestServelet
 */
 @WebServlet("/TestServelet")
 public class TestServlet extends HttpServlet {
    private static final long serialVersionUID = 1L;
    
     /**
     * Default constructor. 
     */
    public TestServlet() {
    }    
    
    /**
     * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
     */
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {        
    //为了体现程序的异步性,先让它睡3s
        try {
            Thread.sleep(3000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }

        response.setCharacterEncoding("utf-8");  
        //打印出程序运行的时间
        System.out.println("异步程序运行时间:"+new SimpleDateFormat("yyyy-MM-dd HH:mm:ss:SSS") .format(new Date()));
    }    
    
    /**
     * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
     */
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {        // TODO Auto-generated method stub
        doGet(request, response);
    }

}
Copy after login

testAjax.jsp (front page and js, triggers asynchronous calls)

<%@ page language="java" contentType="text/html;charset=UTF-8" %>
<html >
<head></head>
<body onload="testajax()">
    Hello Ajax!<br>
</body>
</html>
<SCRIPT LANGUAGE="JavaScript">
    function testajax(){
        fnGetAjaxReturn(&#39;http://localhost:8080/TestProject/TestServlet?a=&#39;+Math.random());
    }    
    
    function fnGetAjaxReturn(url)
    {   
        var userAgent = navigator.userAgent;        
        var http_request = false;        
        //开始初始化XMLHttpRequest对象
        if(window.XMLHttpRequest) { //Mozilla 浏览器
            http_request = new XMLHttpRequest();            
            if (http_request.overrideMimeType) {//设置MiME类别
                http_request.overrideMimeType("text/xml");
            }
        }        
        //else if (window.ActiveXObject) { // IE浏览器
        else if (window.ActiveXObject||userAgent.indexOf("Trident") > -1){          
           try {
                http_request = new ActiveXObject("Msxml2.XMLHTTP");
            } catch (e) {                try {
                    http_request = new ActiveXObject("Microsoft.XMLHTTP");
                } catch (e) {alert("错了吧");}
            }
        }        if (!http_request) { // 异常,创建对象实例失败
            window.alert("不能创建XMLHttpRequest对象实例.");            
            return false;
        }
        http_request.open("GET", url, true);//true 异步  false 同步 
        http_request.send();
        alert("异步请求之后执行时间:"+new Date +&#39;\n毫秒数:&#39;+ new Date().getMilliseconds());
    }</script>
Copy after login

Description: After the jsp page is loaded, a js is called. The js will first send an asynchronous request and then perform an alert pop-up operation.


Let’s start the experiment

Use IE browser and run the URL
http://localhost:8080/TestProject/testAjax.jsp

It was found that the program popped up alert first, and after 3 seconds, ajax returned the background result, which fully proved the asynchronous nature of ajax.

Run results:

How to implement the asynchronous function of AJAX

#From the difference in time, it is found that the program ends first (alert is executed), and 3s have passed. clock, the asynchronous program returns the result.


Conversely, what if

http_request.open("GET", url, true);
Copy after login

true is changed to false in the jsp file?

Run the URL and find that the program executes the last piece of code alert in js after waiting for the Servlet background request to return, which is the so-called synchronous call.

The running results are as follows:

How to implement the asynchronous function of AJAX

The end!

The above is the detailed content of How to implement the asynchronous function of AJAX. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template