Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用长轮询来检查是否有任何新的传入数据。当一个请求正在等待响应时,其他请求在此请求完成之前没有被处理。我正在使用 jQuery Ajax 发布方法和 async =是的。任何人都可以帮我解决这个问题。我认为我的请求正在排队,直到前一个超时。
这不是 ajax 或 javascript 的问题。这是您的 php 锁定会话。您需要添加session_write_close();到在您的长轮询中运行的 php。
session_write_close();