我在我的 Laravel 应用程序 6.2 版中构建 websocket 服务,并使用 laravel-websockets 包版本 1.3 ( https://github.com/beyondcode/laravel-websockets )。
所以,它工作正常,但我自定义我的 websocket 以根据文档重新定义 onOpen、onClose、onError 和 onMessage 方法。在此之后,我用客户端测试所有这些方法,它们仍然可以正常工作(onOpen,onClose,onError),除了 onMessage 方法,最后执行以下异常:
Exception `ErrorException` thrown: `Undefined property: Ratchet\Server\IoConnection::$app`
Unknown app id: exception `ErrorException` thrown: `Undefined property: Ratchet\Server\IoConnection::$app`.
我不知道发生了什么,但这是我自定义的 websocket 类来捕获客户端事件:
<?php
namespace App\Websocket;
use Ratchet\ConnectionInterface;
use Ratchet\RFC6455\Messaging\MessageInterface;
use Ratchet\WebSocket\MessageComponentInterface;
class Handler implements MessageComponentInterface
{
public function onOpen(ConnectionInterface $connection)
{
// TODO: Implement onOpen() method.
\Log::debug('ON OPEN');
// \Log::debug([$connection]);
}
public function onClose(ConnectionInterface $connection)
{
// TODO: Implement onClose() method.
\Log::debug('ON CLOSE');
}
public function onError(ConnectionInterface $connection, \Exception $e)
{
// TODO: Implement onError() method.
\Log::debug('ON ERROR');
// \Log::debug([$connection]);
\Log::debug($e);
}
public function onMessage(ConnectionInterface $connection, MessageInterface $msg)
{
// TODO: Implement onMessage() method.
\Log::debug('ON MESSAGE');
}
}