企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# 终端链接 ~~~ var ws = new WebSocket("ws://192.168.0.108:9502"); ws.onopen = function(event){ alert('开始连接'); ws.send('发送'); } ws.onmessage= function(event){ alert("数据:"+event.data); } ws.onclose = function(event){ alert("链接已关闭"); }; ~~~