doudui1850 2019-04-18 17:19
浏览 759
已采纳

通过golang在WebAssembly上的Websocket?

Is it possible to write a Websocket client in wasm over go? I have tried using gorilla/websocket, but no success:

func main() {
    ws := func(this js.Value, inputs []js.Value) interface{} {
        go func() {
            wsDial, r, err := websocket.DefaultDialer.Dial("ws://localhost:3000/ws", nil)
            fmt.Println(wsDial, r, err)
        }()
        return nil
    }

    js.Global().Set("ws", js.FuncOf(ws))

    select {}
}

I get the following error when calling ws():

dial tcp: Protocol not available
  • 写回答

2条回答 默认 最新

  • duanbushi1867 2019-04-22 09:34
    关注

    I have solved it by retrieving the WebSocket object from the global JavaScript object, which in my case is window because I am running this in a browser. I have used only the "syscall/js" library. It looks like this:

    ws := js.Global().Get("WebSocket").New("ws://localhost:8080/ws")
    
    ws.Call("addEventListener", "open", js.FuncOf(func(this js.Value, args []js.Value) interface{} {
        fmt.Println("open")
    
        ws.Call("send", js.TypedArrayOf([]byte{123}))
        return nil
    }))
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 slam rangenet++配置
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料
  • ¥15 使用R语言marginaleffects包进行边际效应图绘制
  • ¥20 usb设备兼容性问题
  • ¥15 错误(10048): “调用exui内部功能”库命令的参数“参数4”不能接受空数据。怎么解决啊