doufenzhu7012 2012-12-18 01:41
浏览 104
已采纳

使用Ajax进行异步PHP查询?

I'm having trouble understand this. Ajax is asynchronous, that much is certain...it asynchronously calls on PHP, and that PHP has a sql query for the database. That means that PHP sql query is also done asynchronously, right? Otherwise, it defeats the purpose. But without using Ajax, the PHP sql query would be synchronous, is that it? I know how to put it to code, but I'm just confused on how it works internally.

  • 写回答

2条回答 默认 最新

  • dpwu16132 2012-12-18 02:45
    关注

    The SQL query is "asynchronous" in terms of it being apart of the original AJAX call. Don't get hung up on the terminology past that. Client and server are totally separate, especially when dealing with HTTP requests, and in this scenario. The meaning of "asynchronous" with AJAX is that it is processed asynchronously from the rest of the Javascript - it doesn't block the other code from executing. But from then on, everything must be synchronous, otherwise it will not work (excluding the readystatechange for the AJAX).

    The AJAX request goes to the server, the server queries the database, the server responds, the Javascript hears that response, and the AJAX handler processes the response as soon as it isn't being blocked by other Javascript.

    So no, the PHP SQL query itself is always synchronous; it's the HTTP request that is asynchronous.

    UPDATE:

    As an example, here's a very stripped, low level of AJAX that most libraries wrap in certain ways:

    var xhr= new XMLHttpRequest();
    var params = "x=2&y=3";
    var url = "/your/url";
    xhr.open("POST", url, true);
    xhr.onreadystatechange = function () {
        // The `xhr.readyState` changes based on the client's 
        // The `xhr.status` is set based on the server's response
        // Normally, you check for `readyState` being 4 and `status` being 200
        //   meaning that the request is complete and the HTTP status code is 200 (good response)
        if (xhr.readyState == 4) {
            if (xhr.status == 200) {
                // All good
            }
        } else {
    
        }
    };
    xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
    xhr.send(encodeURIComponent(params));
    

    When xhr.send is called, it makes the asynchronous HTTP request to the server, and that's just about that for the Javascript. The onreadystatechange listener is what runs when the readyState changes. A value of 4 means it has completed, and status 200 is what you're looking for...whenever that is.

    Anything can happen on the server. You can make an "asynchronous" (unrelated) database call, contact a different server in whatever way, delay for whatever reason (to a certain limit) or something like that. The point is that nothing is known on the client (Javascript) until the server returns a response. The server could loop for a long time checking the database each time, and never respond until there's a certain change (an example of long polling).

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 请问一下这个运行结果是怎么来的
  • ¥15 这个复选框什么作用?
  • ¥15 单通道放大电路的工作原理
  • ¥30 YOLO检测微调结果p为1
  • ¥20 求快手直播间榜单匿名采集ID用户名简单能学会的
  • ¥15 DS18B20内部ADC模数转换器
  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下