欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

golang接口解决跨域问题

程序员文章站 2022-07-08 18:07:23
通过设置响应头,允许跨域请求的方式来解决。首先编写设置响应头的中间件package Corsimport ("net/http""github.com/gin-gonic/gin")type Options struct {Origin string}func CORS(options Options) gin.HandlerFunc {return func(c *gin.Context) {if options.Origin != "" {c.Writ...

通过设置响应头,允许跨域请求的方式来解决。

首先编写设置响应头的中间件

package Cors

import (
	"net/http"

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

type Options struct {
	Origin string
}

func CORS(options Options) gin.HandlerFunc {
	return func(c *gin.Context) {
		if options.Origin != "" {
			c.Writer.Header().Set("Access-Control-Allow-Origin", options.Origin)
		}
		c.Writer.Header().Set("Access-Control-Max-Age", "86400")
		c.Writer.Header().Set("Access-Control-Allow-Methods", "*")
		c.Writer.Header().Set("Access-Control-Allow-Headers", "Origin, Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization")
		c.Writer.Header().Set("Access-Control-Expose-Headers", "*")
		c.Writer.Header().Set("Access-Control-Allow-Credentials", "true")

		if c.Request.Method == "OPTIONS" {
			c.AbortWithStatus(http.StatusNoContent)
		} else {
			c.Next()
		}
	}
}

然后使用此中间件,应确保这个中间件在其他中间件之前被使用到,这样所有的响应都会成功设置。
此处以gin框架为例。

GRouter = gin.New()

GRouter.Use(Cors.CORS(Cors.Options{Origin: "*"}))

GRouter.Use(gin.Recovery())

// 其他中间件

特别注意的是,如果已经在ningx中设置了允许跨域,那么此处就不能再设置星号了。

GRouter.Use(Cors.CORS(Cors.Options{Origin: ""}))

本文地址:https://blog.csdn.net/raoxiaoya/article/details/108996704

相关标签: golang