【notice/message】删除注释websocket

Signed-off-by: liuhanqing <447067298@qq.com>
pull/65/head
liuhanqing 4 years ago
parent 426d04ab36
commit e766f4313a

@ -107,7 +107,7 @@
request.start(); request.start();
}); });
wsInst = ws.render({ wsInst = ws.render({
wsUrl: Feng.wsUrl,//WebSocket的地址 wsUrl: Feng.wsUrl, //WebSocket的地址
connectErr: function (event) { connectErr: function (event) {
console.log(event) console.log(event)
//如果不支持websocket 回调 //如果不支持websocket 回调
@ -145,42 +145,6 @@
}) })
}); });
/*
var socket;
if (typeof (WebSocket) == "undefined") {
console.log("遗憾您的浏览器不支持WebSocket");
} else {
//实现化WebSocket对象
//指定要连接的服务器地址与端口建立连接
//注意ws、wss使用不同的端口。我使用自签名的证书测试
//无法使用wss浏览器打开WebSocket时报错
//ws对应http、wss对应https。
socket = new WebSocket(Feng.wsUrl);
//连接打开事件
socket.onopen = function() {
console.log("Socket 已打开");
socket.send("消息发送测试(From Client)");
};
//收到消息事件
socket.onmessage = function(msg) {
console.log(msg.data);
};
//连接关闭事件
socket.onclose = function() {
console.log("Socket已关闭");
};
//发生了错误事件
socket.onerror = function() {
alert("Socket发生了错误");
}
//窗口关闭时,关闭连接
window.unload=function() {
socket.close();
};
}*/
window.unload = function () { window.unload = function () {
if (wsInst) { if (wsInst) {
wsInst.close(); wsInst.close();

Loading…
Cancel
Save