语法: startWebSocket(url,onOpened,onClosed,onError,onRecv)
    参数 类型 说明
    url 字符串类型 ws地址,目前只支持ws协议wss暂不支持
    onOpened 函数类型 当连接服务器成功后会回调这个函数
    onClosed 函数类型 当连接服务器断开后会回调这个函数
    onError 函数类型 当连接服务器失败后会回调这个函数
    onRecv 函数类型 当有接收到数据时会回调这个函数
    return 数字类型 表示这个websocket链接的句柄
    使用事项 使用事项:以上所有回调函数是在单独的一个线程里面,请不要在回调函数中阻塞运行或者调用停止(exitScript)或者重启脚本(restartScript)函数,如果非要使用请在setTimer回调函数中执行,
    1. local ws = nil
    2. function wLog(text)
    3. print(text)
    4. toast(text,0,0,20)
    5. end
    6. function onOpened(handle)
    7. ws = handle
    8. print("连接上服务器")
    9. end
    10. function reConnect()
    11. ws = nil
    12. wLog("断开连接,3秒后重连")
    13. setTimer(function()
    14. startWebSocket("ws://192.168.2.105:5586",onOpened,onClosed,onError,onRecv)end,3000)
    15. end
    16. function onClosed(handle)
    17. reConnect()
    18. end
    19. function onError(handle)
    20. reConnect()
    21. end
    22. function onRecv(handle,message)
    23. local text = "消息:"..message
    24. wLog(text)
    25. end
    26. local handle = startWebSocket("ws://192.168.2.105:5586",onOpened,onClosed,onError,onRecv)
    27. if handle ~= nil then
    28. local tick = 1
    29. while true do
    30. if ws ~= nil then
    31. sendWebSocket(ws,string.format("hello:%d",tick))
    32. tick = tick + 1
    33. end
    34. sleep(100)
    35. end
    36. end

    自动化平台 官方网站 交流学习 学习课程 公开课程
    懒人精灵 懒人精灵官网 正在跳转 562451816 💻进阶课程列表 官方课合集
    AiWork AIWork官网 正在跳转 818641934 📗中级课程 官方课合集
    EasyClick EasyClick官网 正在跳转 815053746
    小派精灵 小派精灵官网 正在跳转 429533660
    按键精灵 按键精灵官网 正在跳转 815057794
    易语言 易语言官网
    何鑫云机 合鑫云手机-云真机
    鸟人云机 鸟人云手注册 鸟人云机下载 安卓7.1~10系统