Terry-Mao / goim

goim
https://goim.io/
MIT License
7.2k stars 1.78k forks source link

跨域 #356

Open plum330 opened 3 years ago

plum330 commented 3 years ago

goim实现的websocket不支持跨域吧,如果要跨域如何解决呢?

mrh520 commented 3 years ago

// 自己在gin管道中配置下这个 // 跨域配置 func cors(c gin.Context) { c.Header("Access-Control-Allow-Origin", "") // header的类型 c.Header("Access-Control-Allow-Headers", "*") }