You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
846 B
27 lines
846 B
1 month ago
|
package middlewares
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/gin-gonic/gin"
|
||
|
)
|
||
|
|
||
|
// 跨域通讯
|
||
|
func Cors() gin.HandlerFunc {
|
||
|
return func(c *gin.Context) {
|
||
|
method := c.Request.Method
|
||
|
origin := c.Request.Header.Get("Origin")
|
||
|
if origin != "" {
|
||
|
c.Header("Access-Control-Allow-Origin", "*") // 可将将 * 替换为指定的域名
|
||
|
c.Header("Access-Control-Allow-Methods", "POST, GET, OPTIONS, PUT, DELETE, UPDATE")
|
||
|
c.Header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept, Authorization")
|
||
|
c.Header("Access-Control-Expose-Headers", "Content-Length, Access-Control-Allow-Origin, Access-Control-Allow-Headers, Cache-Control, Content-Language, Content-Type")
|
||
|
c.Header("Access-Control-Allow-Credentials", "true")
|
||
|
}
|
||
|
if method == "OPTIONS" {
|
||
|
c.AbortWithStatus(http.StatusNoContent)
|
||
|
}
|
||
|
c.Next()
|
||
|
}
|
||
|
}
|