美文网首页
Ajax基础 --- XMLHttpRequest

Ajax基础 --- XMLHttpRequest

作者: yancolin | 来源:发表于2018-05-10 14:26 被阅读14次
    AJAX = Asynchronous JavaScript and XML(异步的 JavaScript 和 XML)。AJAX 是一种用于创建快速动态网页的技术。

    通过在后台与服务器进行少量数据交换,AJAX 可以使网页实现异步更新。这意味着可以在不重新加载整个网页的情况下,对网页的某部分进行更新。
    传统的网页(不使用 AJAX)如果需要更新内容,必需重载整个网页面。

    基础知识:

    IE7+,Firefox,Chrome,Safari 以及 Opera 均内建 XMLHttpRequest 对象。

    1)创建 XMLHttpRequest 对象的语法:

    variable = new XMLHttpRequest();
    老版本的IE(IE5 和 IE6)使用ActiveX对象:
    variable = new ActiveXObject("Microsoft.XMLHTTP");
    为了应对所有的现代浏览器,包括IE5和IE6,请检查浏览器是否支持XMLHttpRequest对象。如果支持,则创建XMLHttpRequest对象。
    如果不支持,则创建ActiveXObject:

    var xmlhttp;
    if( window.XMLHttpRequest ) {
        // code for IE7+,Firefox,chrome,Opera,Safari
        xmlhttp = new XMLHttpRequest();
    }else{
        // code for IE6,IE5
        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
    }
    
    2)向服务器发送请求

    XMLHttpRequest对象的 open() 和 send() 方法:
    xmlhttp.open('GET',"test1.txt",true); // open(method,url,async) 规定请求的类型,URL以及是否异步处理请求。async= true (异步) 或async = false(同步)

    GET 还是 POST?
    与POST 相比,GET 更简单也更快,并且在大部分情况下都能用。
    然而,在以下情况中,请使用POST请求:
    a. 无法使用缓存文件(更新服务器上的文件或数据库);
    b. 向服务器发送大量数据(POST 没有数据量限制);
    c. 发送包含未知字符的用户输入时,POST 比 GET 更稳定也更可靠

    例子:

    一个简单的 GET 请求:
    xmlhttp.open("GET","demo_get.asp",true);
    xmlhttp.send();
    

    上面例子中,可能得到是缓存的结果。
    为了避免这种情况,可以向 URL 添加一个唯一的ID:

    xmlhttp.open("GET","demp_get.asp?t="+ Math.random(),true);
    xmlhttp.send();
    
    一个简单的post请求:
    xmlhttp.open("POST","demp_post.asp",true);
    xmlhttp.close();
    

    如果需要像 HTML 表单那样 POST 数据,使用 setRequestHeader() 添加 HTTP 头。然后在 send() 方法中规定希望发送的数据:

    xmlhttp.open("POST","ajax_test.asp",true);
    xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
    xmlhttp.send("fname=Bill&lname=Gates");
    
    Async = true

    当使用async = true 时,请规定在响应处于 onreadystatechange 事件中的就绪状态时执行的函数:

    xmlhttp.onreadystatechange = function(){
      if( xmlhttp.readyState == 4 && xmlhttp.status == 200 ){
        document.getElementById("myDiv").innerHTML = xmlhttp.responseText;
      }
    }
    xmlhttp.open("GET","test1.txt",true);
    xmlhttp.close();
    
    3) 服务器响应

    如需获取服务器的响应,可以使用XMLHttpRequest对象的 responseText 或 responseXML 属性。
    responseText: 获取字符串形式的响应数据
    responseXML: 获取 XML 形式的响应数据

    例:
    a. responseText  document.getElementById("myDiv").innerHTML = xmlhttp.responseText;
    b. responseXML
      xmlDoc = xmlhttp.responseXML;
      txt = "";
      x = xmlDoc.getElementByTagName("ARTIST");
      for( i=0;i<x.length;i++ ){
        txt = txt + x[i].childNodes[0].nodeValue + "<br/>";
      }
      document.getElementByID("myDiv").innerHTML = txt;
    
    onreadystatechange 事件

    当请求被发送到服务器时,我们需要执行一些基于响应的任务。每当readyState 改变时,就会触发 onreadystatechange 事件。
    readyState 属性存有 XMLHttpRequest 的状态信息。
    onreadystatechange:存储函数(或函数名),每当readyState 属性改变时,就会调用该函数。
    readyState: 存有 XMLHttpRequest 的状态。 从 0到4 发生变化。
    0: 请求未初始化。
    1:服务器连接已建立。
    2:请求已接收。
    3:请求处理中。
    4:请求已完成,且响应已就绪。
    status: 200: 'OK'; 404: 未找到页面。

    在onreadystatechange 事件中,我们规定当服务器响应已做好被处理的准备时所执行的任务。
    当readyState 等于4 且状态为 200 时,表示响应已就绪:

    xmlhttp.onreadystatechange = function(){
      if(xmlhttp.readyState == 4 && xmlhttp.status == 200){
        document.getElementById("myDiv").innerHTML = xmlhttp.responseText;
      }
    }
    

    相关文章

      网友评论

          本文标题:Ajax基础 --- XMLHttpRequest

          本文链接:https://www.haomeiwen.com/subject/pgbzrftx.html