初级会员
  • 第 22212 位会员
  • kentxp
  • 2018-08-27 10:21:30
  • Offline
  • 20 20

最近发布的主题

    暂无

最近发布的文章

    暂无

最近分享的资源

    暂无

最近发布的项目

    暂无

最近的评论

  • 这个问题也困扰了我 今天解决了 根本问题在于这个库 不支持并发写同一个conn 官方描述如下 Connections support one concurrent reader and one concurrent writer. Applications are responsible for ensuring that no more than one goroutine calls the write methods 所以我的解决是 定义 type xxx struct { con *websocket.Conn mutex sync.Mutex } 在原来直接操作con的地方 传入这个结构体 判断锁