Explorar el Código

处理跨域问题

zhou.xiaoning hace 2 años
padre
commit
0129aaedfc
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      initialize/router.go

+ 1 - 1
initialize/router.go

@@ -17,7 +17,7 @@ func Routers() *gin.Engine {
 	Router := gin.Default()
 
 	// 跨域,如需跨域可以打开下面的注释
-	// Router.Use(middleware.Cors()) // 直接放行全部跨域请求
+	Router.Use(middleware.Cors()) // 直接放行全部跨域请求
 	// Router.Use(middleware.CorsByRules()) // 按照配置的规则放行跨域请求
 	//global.GVA_LOG.Info("use middleware cors")