直接設置跨域參數
新建 cors
文件
package cors
import (
"time"
"github.com/gin-contrib/cors"
"github.com/gin-gonic/gin"
)
func Cors() gin.HandlerFunc {
c := cors.Config{
AllowAllOrigins: true,
AllowMethods: []string{"GET", "POST", "PUT", "DELETE", "PATCH"},
AllowHeaders: []string{"Content-Type", "Access-Token", "Authorization"},
MaxAge: 6 * time.Hour,
}
return cors.New(c)
}
CORS 跨域中間件
新建 cors
文件
package cors
import (
"net/http"
"github.com/gin-gonic/gin"
)
// 處理跨域請求,支持options訪問
func Cors() gin.HandlerFunc {
return func(c *gin.Context) {
method := c.Request.Method
c.Header("Access-Control-Allow-Origin", "*")
c.Header("Access-Control-Allow-Methods", "POST, GET, OPTIONS, PUT, DELETE, UPDATE")
c.Header("Access-Control-Allow-Headers", "*")
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")
//放行所有OPTIONS方法
if method == "OPTIONS" {
c.AbortWithStatus(http.StatusNoContent)
}
// 處理請求
c.Next()
}
}
二選一 跨域設置
func main() {
r := gin.New()
// 跨域設置
r.Use(Cors())
r.GET("/test", func(c *gin.Context) {
example := c.MustGet("example").(string)
// 打印:"12345"
log.Println(example)
})
// 監聽並在 0.0.0.0:8080 上啟動服務
r.Run(":8080")
}