mirror of
https://gitee.com/johng/gf
synced 2026-07-08 14:39:50 +08:00
add middleware for CORS with default options
This commit is contained in:
13
net/ghttp/ghttp_middleware_cors.go
Normal file
13
net/ghttp/ghttp_middleware_cors.go
Normal file
@ -0,0 +1,13 @@
|
||||
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
||||
//
|
||||
// This Source Code Form is subject to the terms of the MIT License.
|
||||
// If a copy of the MIT was not distributed with this file,
|
||||
// You can obtain one at https://github.com/gogf/gf.
|
||||
|
||||
package ghttp
|
||||
|
||||
// MiddlewareCORS is a middleware handler for CORS with default options.
|
||||
func MiddlewareCORS(r *Request) {
|
||||
r.Response.CORSDefault()
|
||||
r.Middleware.Next()
|
||||
}
|
||||
Reference in New Issue
Block a user