在 golang 中启用 Cors 策略

Posted

技术标签:

【中文标题】在 golang 中启用 Cors 策略【英文标题】:Enable Cors policy in golang 【发布时间】:2021-12-05 01:33:02 【问题描述】:

我们如何使用 golang 在服务器端启用 cors 策略? main.go

func main() 
    defer config.CloseDatabaseConnection(db)
    r := gin.Default()
    dataRoutes := r.Group("api/item")
    
        dataRoutes.GET("/", dataController.All)
        dataRoutes.POST("/", dataController.Insert)
        dataRoutes.GET("/:id", dataController.FindByID)
        dataRoutes.PUT("/:id", dataController.Update)
        dataRoutes.DELETE("/:id", dataController.Delete)
    

    r.Run() 

我找到了

func Cors(w http.ResponseWriter, r *http.Request) 
    w.Header().Set("Content-Type", "text/html; charset=ascii")
    w.Header().Set("Access-Control-Allow-Origin", "*")
    w.Header().Set("Access-Control-Allow-Headers","Content-Type,access-control-allow-origin, access-control-allow-headers")
    
  

但我不确定我们如何在 golang 中实现?我在处理c# 时使用了上面的代码,但在实现它时我被困在golang 中。

【问题讨论】:

这能回答你的问题吗? Go gin framework CORS 【参考方案1】:

如果您使用的是gin-gonic,那么您可以使用CORS middleware,如下例所示。

如果您需要设置其他 CORS 特定标头,请参阅cors.Config 上的文档。

import (
    // your other imports ...

    "github.com/gin-contrib/cors"
    "github.com/gin-gonic/gin"
)

func main() 
    defer config.CloseDatabaseConnection(db)
    r := gin.Default()
    r.Use(cors.New(cors.Config
        AllowOrigins: []string"*",
        AllowMethods: []string"POST", "PUT", "PATCH", "DELETE",
        AllowHeaders: []string"Content-Type,access-control-allow-origin, access-control-allow-headers",
    ))

    dataRoutes := r.Group("api/item")
    
        dataRoutes.GET("/", dataController.All)
        dataRoutes.POST("/", dataController.Insert)
        dataRoutes.GET("/:id", dataController.FindByID)
        dataRoutes.PUT("/:id", dataController.Update)
        dataRoutes.DELETE("/:id", dataController.Delete)
    

    r.Run() 

【讨论】:

Config not declared by package gin 我现在收到此错误。 这是cors.Config 不是gin.Config。这就是为什么您还需要 "github.com/gin-contrib/cors" 导入。

以上是关于在 golang 中启用 Cors 策略的主要内容,如果未能解决你的问题,请参考以下文章

C# Net Core:在 API 中启用 Cors 后,仍处于 CORS 策略阻止状态

如何在 API Gateway 和 React 应用程序之间启用 AWS 中的 CORS 策略?

带有 Eureka 发现的 Spring Cloud Gateway 启用 CORS 策略

无法在 asp.net 核心中为身份服务器 4 启用 CORS

在 Firebase Cloud 功能中启用 Cors

ASP.NET WebApi - 为多个来源启用 CORS