当前位置: 首页 > 工具软件 > SocketCluster > 使用案例 >

socketcluster.js前端写法接受后端信息。

乐正秦斩
2023-12-01
var socket = socketCluster.connect({
port: 80,
//hostname: "xxx.xxx.xxx.xxx",
hostname: "xxx.xxx.xxx.xxx",
//path: '/private-cloud-service',
path: '/rssec/scservice',
secure: false

});

var sub1 = socket.subscribe(`${machId}-counters-system-cpu`);
sub1.watch(function(data) {
取到消息

});

 类似资料: