golang gin框架Web跨域问题

前后端分离的Web开发,如果没有部署到同一环境下,会出现跨域问题,在前后端联调的时候就很恶心了。
这时候只需要在路由注册的函数中,编写一个中间件使用就可以了

package router

import (
    "github.com/gin-gonic/gin"
)

func Router(g *gin.Engine) {
    g.Use(CORSMiddleware())
    api(g.Group("/api"))
    manager(g.Group("/manager"))
}

func CORSMiddleware() gin.HandlerFunc {
    return func(c *gin.Context) {
        origin := c.Request.Header.Get("origin")
        c.Writer.Header().Set("Access-Control-Allow-Origin", origin)
        c.Writer.Header().Set("Access-Control-Allow-Credentials", "true")
        c.Writer.Header().Set("Access-Control-Allow-Headers", "Content-Type, Content-Length, XMLHttpRequest, "+
            "Accept-Encoding, X-CSRF-Token, Authorization")
        if c.Request.Method == "OPTIONS" {
            c.String(200, "ok")
            return
        }
        c.Next()
    }
}

你可能感兴趣的:(golang gin框架Web跨域问题)