JQuery & PHP - can I push from the server?

后端 未结 5 1216
野趣味
野趣味 2021-02-20 11:18

I am just starting to look at JQuery; until now everything has been PHP.

Just curious: if the server detects an event and wants to update the user\'s browser, can I do s

相关标签:
5条回答
  • 2021-02-20 11:57

    The HTTP protocol works on the request-response principle which means that the server can only generate a response following a request from the client. This means that the server cannot send a response to the client without having received a request in the first place. This is not a PHP issue, it is an HTTP issue. So no, you can't push, the client has to make a request, or poll. You could take a look at long polling, as alex suggested.

    0 讨论(0)
  • 2021-02-20 12:09

    You can use "comet" to do this. PHP is a terrible language to do Comet in, though. One of the more popular techniques to do Comet in PHP (that sort of works) is long polling.

    The idea with long polling is to create an AJAX request to the server. The server accepts the connection but doesn't respond (i.e.: a while loop with a sleep(1) in it) until an event takes place. This could be seconds, minutes, etc.

    In order to make long polling "work", though, you're going to have to make sure the connection doesn't time out very quickly, so set your execution time high (minutes, or unlimited if possible). You're also going to need to write code on the client that handles the server's disconnection/timeout. When that happens, a new request should be started.

    Hope this helps!

    0 讨论(0)
  • 2021-02-20 12:12

    You can have the client using a long-polling mechanism like comet, etc, but there's no way to genuinely "push".

    0 讨论(0)
  • 2021-02-20 12:12

    That's not something really too related to jquery, but to Http itself.

    It's basically not possible for a server to push anything to client actively, two possible solution is:

    1. Keep the Http Connection without closing it.

    2. Polling

    0 讨论(0)
  • 2021-02-20 12:17

    Client has to poll, but you can do long polling, i.e. keep the request alive until the server has an event to push back (i.e. complete request).

    Otherwise, you can use Web Sockets.

    0 讨论(0)
提交回复
热议问题