node.js - 如何解析NODEJS+WEBSOCKET中连接信息?
PHP中文网
PHP中文网 2017-04-17 11:46:43
0
0
696

nodejs代码:

nodejsvar wsc = [];
var server = require("http").createServer();
var ws = require('ws');

server.listen(3000);
wss = new ws.Server({
    "server" : server
});
wss.on("connection", function(connection) {
    /* 如何能知道CONNECTION的客户端IP地址?URL等信息? */
    console.log("INFO:输入[" + connection + "]");
    /* 2015/6/3 */
    wsc.push(connection);
    if (wsc.length > 1) {
        data = JSON.stringify({
            "event" : "login"
        });
        connection.send(data);
    }
    connection.on("message", function(message) {
        for ( var int = 0; int < wsc.length; int++) {
            try {
                if (wsc[int] != connection) {
                    wsc[int].send(message);
                }
            } catch (e) {
            }
        }
    });
});
PHP中文网
PHP中文网

认证0级讲师

全部回覆(0)
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板