Tag: polling

如何在非活动的iframe中停止javascript ajax请求?

我制作了网站,其中各种其他页面都内置为带i帧的“应用程序”: 在这些应用程序中,执行了javascript代码,其中包括非常频繁的HTTP请求。 $(‘#app1button’).click(function () { //Here i have to stop the HTTP-Requests which where fired from the JS of App2 hideAllApps(); showApp(app1); }); app1非常频繁地从服务器轮询信息: app1.php里面有Javascript :: Handler = window.setInterval(getStatus, 100); //start status messages 当我现在点击app2时,另一个应用程序弹出,我想停止由于性能原因加载到app1.php中的javascript。 $(‘#app2button’).click(function () { //Here i have to stop the HTTP-Requests which where fired from the JS of App1 hideAllApps(); showApp(app2); }); […]

如何完全实现服务器发送的事件以进行消息轮询

我正在尝试使用API​​与服务器通信。 为了更容易,我写了一个脚本,将使用PHP脚本传递API。 我的目标是每秒查询一次API以查看其队列中是否有新消息。 我被建议使用服务器发送的事件方法,并让服务器仅在有新内容时才向客户端发送响应。 这是我的PHP脚本 ‘server:IP’, //REQUIRED – Server Name ‘port’ => 8018, //REQUIRED – Server Port ‘userID’ => ‘user’, //REQUIRED – UserID to login with ‘password’ => ‘123456’, //REQUIRED – password for the UserID to login with ); try { //create a new instance of icws $icws = new API\ICWS($config); //create a new session […]