1 Star 0 Fork 0

小农民老霍儿/makepad.github.io

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
devwebsocketdemo.js 501 Bytes
一键复制 编辑 原始数据 按行查看 历史
小农民老霍儿 提交于 2024-04-15 14:34 . chore: up
var sockets = []
module.exports = function(sock){
sockets.push(sock)
sock.onMessage = function(msg){
try{
let data = JSON.parse(msg.data)
console.log("RECEIVED", data)
sock.send(JSON.stringify({msg:"HELLO"}))
}
catch(e){
console.log(e)
}
}
}
function doSomething(){
let msg = JSON.stringify({
data:'test'
})
for(let i = 0; i < sockets.length; i++){
sockets[i].send(msg)
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/huoxiangdong_farmer/makepad.github.io.git
[email protected]:huoxiangdong_farmer/makepad.github.io.git
huoxiangdong_farmer
makepad.github.io
makepad.github.io
main

搜索帮助