我正在使用 Rachet 并尝试给出here的JS代码。在我的Chrome控制台窗口中运行以下代码后,我看不到任何消息。 conn.send()
表示未定义:
var conn = new WebSocket('ws://localhost:8080');
conn.onopen = function(e) {
console.log("Connection established!");
};
conn.onmessage = function(e) {
console.log(e.data);
};
更新
服务器端的代码:
public function onMessage(ConnectionInterface $from, $msg) {
$numRecv = count($this->clients) - 1;
echo sprintf('Connection %d sending message "%s" to %d other connection%s' . "\n"
, $from->resourceId, $msg, $numRecv, $numRecv == 1 ? '' : 's');
foreach ($this->clients as $client) {
if ($from !== $client) {
print "Someone else is here";
// The sender is not the receiver, send to each client connected
$msg = ' Server responds:- '.$msg;
$client->send($msg);
}
}
}
更新#2
以下检查似乎是问题所在:
if ($from !== $client) {}
但删除后,它会向所有连接客户端而不是向发送消息的人广播
答案 0 :(得分:0)
原来问题是服务器端的这一行:
if ($from !== $client) {}
不是让服务器响应各自的客户端,如果它是 Not 那个客户端就会响应。我刚把它改成了:
if ($from === $client) {}
它对我有用。示例代码中给出的!==
用于典型的聊天应用程序,其中一个客户端将与其他客户端进行通信,而在我的情况下,它只是Server <->Client
答案 1 :(得分:0)
@ Volatil3,您可以尝试我的包https://github.com/php-pure/sacky-server和https://github.com/php-pure/sacky-client
我有一个处理channel
base的类解释器,与socket.io
在sacky-server中,在您的控制台/tests/run
上执行,然后在sacky-client中,打开位于channel/channel.html
的2个浏览器选项卡。