1 Star 0 Fork 28

yirenji/PaiAdmin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ws.html 795 Bytes
一键复制 编辑 原始数据 按行查看 历史
cfn 提交于 2020-01-16 21:40 . 'ws'
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
</body>
<script>
var ws = new WebSocket("ws://182.254.133.82:1996");
try {
ws.send('{"type":"login","data":"b14dcdaf514888805a1f0d65614d0488"}');
} catch(err) {
var tryTime = 0;
// 重试10次,每次之间间隔3秒
if (tryTime < 1) {
var t1 = setTimeout(function () {
tryTime++;
ws.send('{"type":"login","data":"b14dcdaf514888805a1f0d65614d0488"}');
}, 3*1000);
} else {
console.error("重连失败.");
}
}
ws.onmessage = function(e) {
alert("收到服务端的消息:" + e.data);
};
</script>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/thinkphpbox/pai.git
[email protected]:thinkphpbox/pai.git
thinkphpbox
pai
PaiAdmin
master

搜索帮助