FAQ about AJAX-part II

來源:互聯網
上載者:User

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.

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.