goframe 框架跨域 设置

£可爱£侵袭症+ 提交于 2020-08-06 19:44:16
    s := g.Server()
    s.BindHookHandlerByMap("/*any", map[string]ghttp.HandlerFunc{
        "BeforeServe": func(r *ghttp.Request) {

            r.Response.CORS(ghttp.CORSOptions{
                AllowOrigin:      "*",
                AllowMethods:     "POST, GET, OPTIONS, PUT, DELETE,UPDATE,",
                AllowCredentials: "false",
                MaxAge:           1728000,
                AllowHeaders:     "Authorization, Content-Length, X-CSRF-Token, Token,session,X_Requested_With,Accept, Origin, Host, Connection, Accept-Encoding, Accept-Language,DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, Cache-Control, Content-Type, Pragma",
                ExposeHeaders:    "Content-Length, Access-Control-Allow-Origin, Access-Control-Allow-Headers,Cache-Control,Content-Language,Content-Type,Expires,Last-Modified,Pragma,FooBar",
            })

            if r.Request.Method == "OPTIONS" {
                _ = r.Response.WriteJson(g.Map{
                    "code": http.StatusOK,
                    "msg":  "",
                    "data": nil,
                })
                r.ExitAll()
            }

        }})
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!