1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| package middleware
|
| import (
| "github.com/gin-gonic/gin"
| "net/http"
| )
|
| func Cors() gin.HandlerFunc {
| return func(c *gin.Context) {
| method := c.Request.Method
|
| c.Header("Access-Control-Allow-Origin", "*")
| c.Header("Access-Control-Allow-Headers", "Content-Type,AccessToken,X-CSRF-Token, Authorization, Token")
| c.Header("Access-Control-Allow-Methods", "POST, GET, OPTIONS, DELETE, PUT")
| c.Header("Access-Control-Expose-Headers", "Content-Length, Access-Control-Allow-Origin, Access-Control-Allow-Headers, Content-Type")
| c.Header("Access-Control-Allow-Credentials", "true")
|
| //放行所有OPTIONS方法
| if method == "OPTIONS" {
| c.AbortWithStatus(http.StatusNoContent)
| }
|
| // 处理请求
| c.Next()
| }
| }
|
|