由 golang 生成的基于 WebAssembly 的 Websockets?

Websockets over WebAssembly generated by golang?

是否可以在 wasm over go 中编写 Websocket 客户端?我试过使用 gorilla/websocket,但没有成功:

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 {}
}

调用 ws() 时出现以下错误:

dial tcp: Protocol not available

看看gopherJS websocket library。这个是在浏览器中创建的运行(最初是js)。

我最近在 WASM 中看到了一个 YouTube 视频,但我找不到了。

我通过从全局 JavaScript 对象中检索 WebSocket 对象解决了这个问题,在我的例子中是 window 因为我在浏览器中是 运行 this .我只使用了 "syscall/js" 库。它看起来像这样:

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
}))

gorilla/websocket 不支持网络组装。我最终使用了支持 wasm 的 nhooyr/websocket