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()
}
}})
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。