node:11 Websocket

5 篇文章 0 订阅

nodejs实现:

示例讲解图:

示例代码:

服务器端:

const WebSocket = require("ws");
const ws = new WebSocket.Server({port: 8080}, ()=>{
    console.log('socket start');
});

let clients = [];

ws.on('connection', (client)=>{
    clients.push(client);
    client.send("welcome!");// 数据传输字符串

    client.on("message", (msg)=>{
        console.log("来自前端的数据:"+msg);
        if(msg.indexOf("all") != -1){
            sendAll();
        }
    });

    client.on("close", (msg)=>{
        console.log("前端主动断开连接");
    });
});

// 给所有连接的客户端发送数据
function sendAll(){
    for (let index = 0; index < clients.length; index++){
        clients[index].send('sdlsafa');
    }
}

浏览器端:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    <input type="text" id="name">
    <button onclick="sendserver()"> send server </button>
    <script>
        const ws = new WebSocket("ws://localhost:8080/");
        ws.onopen = function(){
            console.log("服务器已连接");
        };

        ws.onmessage = (msg)=>{
            console.log("来自服务器端的数据"+msg.data);
        };

        ws.onclose = ()=>{
            console.log("服务器关闭");
        };

        function sendserver(){
            let msg = document.getElementById("name").value;
            // ws.send("hello!" + msg);
            ws.send(msg);
        }
    </script>
</body>
</html>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值