需求:根据client端发送的不同uid,server端推送对应uid比较感兴趣的一些话题给不同的用户
每个client 端都有唯一一个uid发送给服务端:
ws.send(JSON.stringify({"type":"attention","uid":UID}));
此时uid=416
server端发送数据的时候:
ws.send(JSON.stringify({"type":"send","uid":"416","content":input.value}));
在onMessage中处理:
```php
switch($message_data)
{
// 发送数据给用户 message: {type:send, to_client_id:xx, content:xx}
case 'send':
// 向某个浏览器窗口发送消息
if($message_dataGateway::sendToUid($message_data, json_encode($new_message));
}
// 向所有浏览器发送消息