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.

  • 相关阅读:
    win8装oracle 10g 弹出:环境变量path的值超过1023字符,无法设置改值
    Modern UI for WPF 开源项目(3):用模板创建我的第一个Modern UI app
    安装oracle11G,10G时都会出现:注册ocx时出现OLE初始化错误或ocx装载错误对话框
    win8快捷键
    Win7/Win8 系统下安装Oracle 10g 提示“程序异常终止,发生未知错误”的解决方法
    Delphi FireDAC 连接SQL Server一些要注意的地方
    Delphi XE5 for Android (四)
    Delphi D10.X VCL和FireMonkey之间的常见差异介绍
    delphi给App授予权限
    github无法登陆的解决办法
  • 原文地址:https://www.cnblogs.com/Winston/p/1150623.html
Copyright © 2011-2022 走看看