1 Star 4 Fork 0

jingshanccc/course

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
cors.go 491 Bytes
一键复制 编辑 原始数据 按行查看 历史
jingshanccc 提交于 2020-12-14 21:40 . [feature] #26
package middleware
import (
"github.com/gin-contrib/cors"
"github.com/gin-gonic/gin"
)
// Cors : 跨域配置
func Cors() gin.HandlerFunc {
config := cors.DefaultConfig()
config.AllowMethods = []string{"GET", "POST", "PUT", "PATCH", "DELETE", "HEAD", "OPTIONS"}
config.AllowHeaders = []string{"Origin", "Content-Length", "Content-Type", "Cookie", "Authorization"}
config.AllowOrigins = []string{"*"} //http://localhost:8081
config.AllowCredentials = true
return cors.New(config)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jingshanccc/course.git
git@gitee.com:jingshanccc/course.git
jingshanccc
course
course
23f538baa694

搜索帮助