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-17 18: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. Theonreadystatechange
listener is what runs when thereadyState
changes. A value of 4 means it has completed, andstatus
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).
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报