douxuanma4357 2018-12-29 00:19
浏览 435
已采纳

在localhost:8080上运行的服务器从在9090上运行的前端获取CORS

I have a API-server (gin-gonic) running on localhost:8080. All the typical CORS-Header are set for debugging: When I try to test the API with a simple Frontend (swagger-ui) i get a CORS-error. (swagger is running on localhost:9090)

It works when everything is running on the same domain.

c.Writer.Header().Set("Access-Control-Allow-Origin", "*")
c.Writer.Header().Set("Access-Control-Allow-Headers", "*")
c.Writer.Header().Set("Access-Control-Allow-Methods", "POST, OPTIONS, GET, PUT")

why is this not working. Should the 3 lines not keep all CORS problems away?

Im super curious for actual explanations rather than a plain solution. All resources regarding this (or a good one about CORS) are welcome.

It works fine in Postman or CURL

Errormessage in browser: CORS Error Message

  • 写回答

1条回答 默认 最新

  • doulan8846 2018-12-30 08:15
    关注

    When you catch OPTION as Preflight request your server should return success. I cannot find return in your provided code.

    Also you can try to use https://github.com/rs/cors

    package main
    
    import (
        "net/http"
    
        "github.com/gin-gonic/gin"
        cors "github.com/rs/cors/wrapper/gin"
    )
    
    func main() {
        router := gin.Default()
    
        router.Use(cors.Default())
        router.GET("/", func(context *gin.Context) {
            context.JSON(http.StatusOK, gin.H{"hello": "world"})
        })
    
        router.Run(":8080")
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 fesafe材料库问题
  • ¥35 beats蓝牙耳机怎么查看日志
  • ¥15 Fluent齿轮搅油
  • ¥15 八爪鱼爬数据为什么自己停了
  • ¥15 交替优化波束形成和ris反射角使保密速率最大化
  • ¥15 树莓派与pix飞控通信
  • ¥15 自动转发微信群信息到另外一个微信群
  • ¥15 outlook无法配置成功
  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统