作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的代码(使用 rachet 和 wamp 服务器的 websocket php!
public function onClose(ConnectionInterface $conn) {
$conn->send("Close client");
}
ab.debug( true, true );
conn._websocket.onmessage = function (e){
data = JSON.parse(e.data);
console.log(data[1]);
if(data.cat=='serverEvents'){
switch(data.action) {
case 'updateServerinfo':
jQuery.updateServerinfo(data.actionData);
break;
}
}
};
最佳答案
autobahnJS 有自己的方式来处理客户端对服务器的请求。您正在尝试从服务器向所有客户端发送请求(“关闭所有客户端”请求)。最好的方法是让一个线程使用 JS 的 setInterval() 函数每 X 秒轮询一次服务器的事件。例如。:
setInterval(checkForUpdate, 60 * 1000);
并在 checkForUpdate() 中:
function checkForContentUpdate(timetableId) {
var serviceUrl = 'http://yourscripttocheckhere';
var xhr = $.ajax({url: serviceUrl, cache: false, success: function(content) {
// Check server reply and act accordingly
}});
}
关于PHP Ratchet 网络套接字$conn->send($msg)!如何在客户端获取此消息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16671738/
我是一名优秀的程序员,十分优秀!