zoukankan      html  css  js  c++  java
  • FAQ about AJAXpart II

    About the script in my page:AJAX Asynchronous JavaScript and XML.

    Q:
        why do u create an http_request_check? what 's the use ?
    A:
        the object http_request_check is an object through which we send our request to the server side. and with the traditional way, we will send our reqeust to server through submitting a form. but Ajax makes it different.

    Q:
        How can I send my request to a specified server?
    A:
        we can use method
    http_request_check.Open (para1:sendWay,para2:serverURL,para3:asychronousely|synchronouly)
    para1: to specify how to send the response to server. There are two ways: "GET" and "POST".
    para2: to specify the server url where the request send to and the response reply back from.
    para2: to specify send request asychronousely or sychronousely. the default is asycronousely.
      
    Q:   
        How can we invoke the callback function when the response from server arrives.
    A:
        the request object has a event called readystatechange.  we must associate this event hanlder with a involved function. That is to say, when the reqeust object track that the event of readystatechange, it will invoke the callback function aotumaticly. the grammer is like this:
        http_request_check.onreadystatechange=mycallback_function;
        function mycallback_function()
        {
        ......
        }

    Q:   
        in our self-difinited callback function processRequest_check() , why do we write like this:
        if (http_request_check.readyState == 4) 
            {......}
        to judge the http_request_check 's readystate?
    A:
        http_request_check has many readystate,which is like 1,2,3 4,.... only state 4 means that the server response has arrived. that's it. actually, we can handle something only after the server response has arrived.

    Q:
        readystate 4 means that server resposne has arrived. but what about the
        if(http_request_check.status==200)
        {
        ......
        }
        why we need to judge it again?
    A:
        ok, just now we said readystate 4 means the server response has arrived. but how about the result? maybe the result is an error exception! how to judge it? then we must check the http_request_check.status. you know , there are so many status about http_request,such as 402,403,404,...200. each one indicates one kind of result. and only status 200 means status normal with no exception. so if we wanna handle the page, we must guarantee that the server response is ok. that's the reason.

    Q:
        How can we get the content from the server response through http_request_check object?
    A:
        when the server response has arrived. the http_request_check  has a property called responseText, and in which the reply content is contained. so if we wann get the response content, just write like this:
        ****=http_request_check.responseText.

  • 相关阅读:
    从索罗斯的“暴涨-暴跌”模型,看“房地产泡沫”
    在深圳有娃的家长必须要懂的社保少儿医保,不然亏大了!(收藏)
    深圳楼市2007vs2016
    细论庚金
    Win10无法安装提示磁盘布局不受UEFI固件支持怎样解决
    八字庚金特性
    广东省限价房转让需补70%的溢价
    DBUTIL 调用存储过程例子
    第二届八一杯网络大学生数学竞赛试题
    八一的专属上网导航服务
  • 原文地址:https://www.cnblogs.com/Winston/p/1150623.html
Copyright © 2011-2022 走看看