码迷,mamicode.com
首页 > 其他好文 > 详细

goframe 框架跨域 设置

时间:2019-05-14 11:19:52      阅读:276      评论:0      收藏:0      [点我收藏+]

标签:options   als   with   string   handler   bar   author   res   tom   

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() } }})

goframe 框架跨域 设置

标签:options   als   with   string   handler   bar   author   res   tom   

原文地址:https://blog.51cto.com/hequan/2394141

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!