WebSocket:无法在客户端接收消息

时间:2016-04-05 11:21:02

标签: javascript php ratchet

我正在使用 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);
            }
        }
    }

请参阅运行中的客户端和服务器 enter image description here

更新#2

以下检查似乎是问题所在:

if ($from !== $client) {}

但删除后,它会向所有连接客户端而不是向发送消息的人广播

2 个答案:

答案 0 :(得分:0)

原来问题是服务器端的这一行:

if ($from !== $client) {}

不是让服务器响应各自的客户端,如果它是 Not 那个客户端就会响应。我刚把它改成了:

if ($from === $client) {}

它对我有用。示例代码中给出的!==用于典型的聊天应用程序,其中一个客户端将与其他客户端进行通信,而在我的情况下,它只是Server <->Client

答案 1 :(得分:0)

@ Volatil3,您可以尝试我的包https://github.com/php-pure/sacky-serverhttps://github.com/php-pure/sacky-client

我有一个处理channel base的类解释器,与socket.io

相同

在sacky-server中,在您的控制台/tests/run上执行,然后在sacky-client中,打开位于channel/channel.html的2个浏览器选项卡。