通过golang生成的WebAssembly上的Websocket?

是否可以在wasm over中编写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

回答:

我已经通过WebSocket从全局JavaScript对象中检索对象解决了它,在我的情况下,这是window因为我正在浏览器中运行它。我只使用了“

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

}))

以上是 通过golang生成的WebAssembly上的Websocket? 的全部内容, 来源链接: utcz.com/qa/413229.html

回到顶部