作者 陈志颖

fix:添加跨域header

@@ -19,7 +19,7 @@ func AllowCors() func(ctx *context.Context) { @@ -19,7 +19,7 @@ func AllowCors() func(ctx *context.Context) {
19 //其中Options跨域复杂请求预检 19 //其中Options跨域复杂请求预检
20 AllowMethods: []string{"*"}, 20 AllowMethods: []string{"*"},
21 //指的是允许的Header的种类 21 //指的是允许的Header的种类
22 - AllowHeaders: []string{"Origin", "Authorization", "Access-Control-Allow-Origin", "Content-Type", "x-requested-with"}, 22 + AllowHeaders: []string{"Origin", "Authorization", "Access-Control-Allow-Origin", "Content-Type", "x-requested-with", "x-tl-sign"},
23 //公开的HTTP标头列表 23 //公开的HTTP标头列表
24 ExposeHeaders: []string{"Content-Length"}, 24 ExposeHeaders: []string{"Content-Length"},
25 //如果设置,则允许共享身份验证凭据,例如cookie 25 //如果设置,则允许共享身份验证凭据,例如cookie