{">
赞
踩
目录
- function createWs(params, cb) {
- const ws = new WebSocket("ws://124.222.224.186:8800");
- let timer = null;
- // 服务器连接成功处理函数
- ws.onopen = function () {
- // 连接成功后,调用发送参数的函数
- sendMessage();
- console.log("ws连接成功......");
- }
-
- // 服务器连接失败处理函数
- ws.onerror = function(err) {
- console.log("ws连接失败......", err);
- }
-
- // 断开服务器连接处理函数
- ws.onclose = function() {
- console.log("ws断开连接......");
- }
-
- // 请求成功后返回的数据处理函数
- ws.onmessage = function (res) {
- cb(res.data);
- }
-
- // 向ws发送参数
- function sendMessage() {
- if(ws.readyState === WebSocket.OPEN) {
- ws.send(params)
- }
- }
- }
createWs("测试数据", (res) => {
console.log("111",res);
})
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。