首页 > 其他 > 详细

308 获取服务器端的响应的另一种方式onreadystatechange ,与onload的区别

时间:2020-02-21 21:39:04      阅读:70      评论:0      收藏:0      [点我收藏+]

技术分享图片

技术分享图片

技术分享图片


06-获取服务器端响应数据的另一种方式.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
    <script type="text/javascript">
        var xhr = new XMLHttpRequest();
        // 0 已经创建了ajax对象 但是还没有对ajax对象进行配置
        console.log(xhr.readyState);
        xhr.open('get', 'http://localhost:3000/readystate');
        // 1 已经对ajax对象进行配置 但是还没有发送请求
        console.log(xhr.readyState);

        // 当ajax状态码发生变化的时候出发
        xhr.onreadystatechange = function() {
            // 2 请求已经发送了
            // 3 已经接收到服务器端的部分数据了
            // 4 服务器端的响应数据已经接收完成
            console.log(xhr.readyState);
            // 对ajax状态码进行判断 如果状态码的值为4就代表数据已经接收完成了
            if (xhr.readyState == 4) {
                console.log(xhr.responseText);
            }
        } 

        xhr.send();
        
    </script>
</body>
</html>

308 获取服务器端的响应的另一种方式onreadystatechange ,与onload的区别

原文:https://www.cnblogs.com/jianjie/p/12343027.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!