mirror of
https://github.com/tiger1103/gfast.git
synced 2026-09-21 18:20:47 +00:00
17 lines
293 B
Go
17 lines
293 B
Go
/*
|
|
* @desc:xxxx功能描述
|
|
* @company:云南省奇讯科技有限公司
|
|
* @Author: yixiaohu
|
|
* @Date: 2021/3/18 16:42
|
|
*/
|
|
|
|
package middleware
|
|
|
|
import "github.com/gogf/gf/net/ghttp"
|
|
|
|
// CORS 跨域处理中间件
|
|
func CORS(r *ghttp.Request) {
|
|
r.Response.CORSDefault()
|
|
r.Middleware.Next()
|
|
}
|