1234567891011121314151617181920212223242526272829 |
- package middware
- import (
- "net/http"
- "github.com/gin-gonic/gin"
- )
- 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", "*")
- c.Header("Access-Control-Allow-Methods", "POST, GET, OPTIONS")
- c.Header(
- "Access-Control-Expose-Headers",
- "*",
- )
- c.Header("Access-Control-Allow-Credentials", "true")
- // 放行所有OPTIONS方法
- if method == "OPTIONS" {
- c.AbortWithStatus(http.StatusNoContent)
- }
- // 处理请求
- c.Next()
- }
- }
|