如何使用websocket压力并发测试工具
展开全部
HTML5中WebSocket实现消息推送的方法:
1、创建服务器连接:
var socket = new WebSockect('ws://localhost:8080');
2、增加监控事件,当触发open方法时,建立连接准备发送消息。
socket.addEventListener('open', function(){
console.log("Connection established, handle with event");
});
socket.onopen = function(){
console.log("Connection established, handle with function");
};
3、调用方法发送消息:
socket.send("Somme Message to send to the server");
4、关闭连接
socket.close();
1、创建服务器连接:
var socket = new WebSockect('ws://localhost:8080');
2、增加监控事件,当触发open方法时,建立连接准备发送消息。
socket.addEventListener('open', function(){
console.log("Connection established, handle with event");
});
socket.onopen = function(){
console.log("Connection established, handle with function");
};
3、调用方法发送消息:
socket.send("Somme Message to send to the server");
4、关闭连接
socket.close();
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询