Browse Source

add more allowed header

Paul 4 years ago
parent
commit
1d7b8f136d
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      middleware/cors/cors.go

+ 1
- 1
middleware/cors/cors.go View File

13
 
13
 
14
 	config.AddAllowMethods(http.MethodDelete, http.MethodOptions, http.MethodPatch)
14
 	config.AddAllowMethods(http.MethodDelete, http.MethodOptions, http.MethodPatch)
15
 	// x-requested-with antd上传组件需要
15
 	// x-requested-with antd上传组件需要
16
-	config.AddAllowHeaders("Authorization", "X-Require-Cookie", "X-Device", "x-requested-with", "X-Tourist-Id")
16
+	config.AddAllowHeaders("User-Agent", "Lang", "Authorization", "X-Require-Cookie", "X-Device", "x-requested-with", "X-Tourist-Id")
17
 	config.AllowCredentials = true
17
 	config.AllowCredentials = true
18
 	config.AllowOriginFunc = func(origin string) bool {
18
 	config.AllowOriginFunc = func(origin string) bool {
19
 		if gin.Mode() == gin.DebugMode {
19
 		if gin.Mode() == gin.DebugMode {