add middleware for CORS with default options

This commit is contained in:
John Guo
2022-02-22 10:51:22 +08:00
parent afa58ed45b
commit 4935416b94

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