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条)

报告相同问题?

悬赏问题

  • ¥50 永磁型步进电机PID算法
  • ¥15 sqlite 附加(attach database)加密数据库时,返回26是什么原因呢?
  • ¥88 找成都本地经验丰富懂小程序开发的技术大咖
  • ¥15 如何处理复杂数据表格的除法运算
  • ¥15 如何用stc8h1k08的片子做485数据透传的功能?(关键词-串口)
  • ¥15 有兄弟姐妹会用word插图功能制作类似citespace的图片吗?
  • ¥200 uniapp长期运行卡死问题解决
  • ¥15 latex怎么处理论文引理引用参考文献
  • ¥15 请教:如何用postman调用本地虚拟机区块链接上的合约?
  • ¥15 为什么使用javacv转封装rtsp为rtmp时出现如下问题:[h264 @ 000000004faf7500]no frame?