前后端分离项目,gin+vue,存在跨域问题,通过cors解决,有偿!有偿!对大佬来说应该很简单
import ( "github.com/gin-contrib/cors" "github.com/gin-gonic/gin" "time")
func Cors() gin.HandlerFunc { config := cors.DefaultConfig() config.AllowMethods = []string{"GET", "POST", "PUT", "PATCH", "DELETE", "HEAD"} config.AllowHeaders = []string{"Origin", "Content-Length", "Content-Type", "*"} config.AllowCredentials = false config.AllowOrigins = []string{"*"} config.ExposeHeaders = []string{"token"} config.MaxAge = time.Hour * 24 return cors.New(config) }
//代码给你了 很简单的
正解 我也写过日记 https://adoontheway.github.io/2019/11/29/everydayprogress004/
AI可以解决你的问题
我掐指一算,多半是 OPTIONS 404 了。
您好 可联系解决这个问题
下载APP,能及时收到回复或进展
import (
"github.com/gin-contrib/cors"
"github.com/gin-gonic/gin" "time")
func Cors() gin.HandlerFunc {
config := cors.DefaultConfig()
config.AllowMethods = []string{"GET", "POST", "PUT", "PATCH", "DELETE", "HEAD"}
config.AllowHeaders = []string{"Origin", "Content-Length", "Content-Type", "*"}
config.AllowCredentials = false
config.AllowOrigins = []string{"*"}
config.ExposeHeaders = []string{"token"}
config.MaxAge = time.Hour * 24
return cors.New(config)
}
//代码给你了 很简单的
正解
我也写过日记 https://adoontheway.github.io/2019/11/29/everydayprogress004/
AI可以解决你的问题
我掐指一算,多半是 OPTIONS 404 了。
您好 可联系解决这个问题