是否可以在wasm over中编写Websocket客户端?我尝试使用gorilla/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():
ws()
dial tcp: Protocol not available
我已经通过WebSocket从全局JavaScript对象中检索对象解决了它,在我的情况下,这是window因为我正在浏览器中运行它。我只使用了“ syscall / js”库。看起来像这样:
WebSocket
JavaScript
window
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 }))