使用iris+bootstrap报错

来源:3-4 页面展示开发

qq_LoveInSeptem_0

2019-08-20 10:43

// SetupWebsockets prepares the websocket server.
func (b *Bootstrapper) SetupWebsockets(endpoint string, onConnection websocket.ConnectionFunc) {
   ws := websocket.New(websocket.Config{})
   ws.OnConnection(onConnection)

   b.Get(endpoint, ws.Handler())
   b.Any("/iris-ws.js", func(ctx iris.Context) {
      ctx.Write(websocket.ClientSource)
   })
}

bootstrapper.go这个文件 71行 报错 找不到

websocket ConnectionFunc 这个类型 我是初学者 希望老师解答一下 谢谢
写回答 关注

1回答

  • Lz_Jax
    2019-08-20 14:46:51
    已采纳

    先把这个注释掉 项目中并没有用到这个样

iris+xorm Go语言开发球星库

iris和xorm快速构建Web应用,Go设计开发球星库系统。

7896 学习 · 51 问题

查看课程

相似问题