【发布时间】:2016-05-02 20:53:47
【问题描述】:
我是 PHP Websockets 的初学者,我正在尝试使用数据库存储创建实时聊天。我做得很好,但现在我遇到了一个问题。有问题,当 user1 向 user2 发送消息并且 user2 先到站点(在 localhoste 上先重新加载)时,它不会是“实时”的。
让我进一步解释一下。
这是我的 server.php。跟棘轮教程差不多:
$loop = React\EventLoop\Factory::create();
$pusher = new \Pusher();
$context = new React\ZMQ\Context($loop);
$pull = $context->getSocket(ZMQ::SOCKET_PULL);
$pull->bind('tcp://127.0.0.1:5555'); // Binding to 127.0.0.1 means the only client that can connect is itself
$pull->on('message', array($pusher, 'onBlogEntry'));
$webSock = new React\Socket\Server($loop);
$webSock->listen(8080, '0.0.0.0'); // Binding to 0.0.0.0 means remotes can connect
$webServer = new Ratchet\Server\IoServer(
new Ratchet\Http\HttpServer(
new Ratchet\WebSocket\WsServer(
new Ratchet\Wamp\WampServer($pusher ))), $webSock);
$loop->run();
在 pusher.php 中最重要的是这些方法(我省略了其他不重要的东西):
protected $subscribedTopics = array();
protected $myID = array();
public function onSubscribe(ConnectionInterface $conn, $data) {
$this->subscribedTopics[json_decode($data)->teamID] = $data;
$this->myID[json_decode($data)->userID] = $data;
}
public function onBlogEntry($entry) {
$entryData = json_decode($entry, true);
if ((!array_key_exists($entryData['team_id'], $this->subscribedTopics)) ||
(!array_key_exists($entryData['to_user_id'], $this->myID))
) {
return;
}
$teamID = $this->subscribedTopics[$entryData['team_id']];
$teamID->broadcast($entryData);
}
在我的 presenter Class 中,我的表单很简单。当用户提交此表单时,此代码如下:
$this->chatPartner = $values['to_user_id']; //this I get from the form
$this->redrawControl('msg'); //here I redraw my layout
$this->messages_model->addMessage($values); //here I send data to database
$context = new \ZMQContext();
$socket = $context->getSocket(\ZMQ::SOCKET_PUSH, 'my pusher');
$socket->connect("tcp://localhost:5555");
$socket->send(json_encode($values));
然后,在 view 我有这个 JavaScript 代码:
var myJSON = '{'
+ '"teamID" : {$teamId},' //this I get from the presenter
+ '"userID" : {$userId}' //this I get from the presenter
+ '}';
var conn = new ab.Session('ws://localhost:8080',
function() {
conn.subscribe(myJSON, function(topic, data) {
if (data.from_user_id == mypartnerIdA) {
//here I edit the DOM
}
});
},
function() {
console.warn('WebSocket connection closed');
},
{'skipSubprotocolCheck': true}
);
那么,回到我的问题。我模拟2个用户。 User1 重新加载此页面,javascript 连接首先在哪里。 User2 在他之后重新加载此页面。当 User1 向 user2 发送消息时,消息立即(实时)出现。但是当 user2 向 user1 发送消息时,该消息不会立即出现 - 它仅在下次重新加载页面后才会出现。
我的问题是 - 如何解决这个问题?如何使 user2 的消息也实时?如何修复我的代码?
【问题讨论】:
标签: php websocket wamp zeromq ratchet