I use gin-gonic's r.Static("files", "./files")
to serve all files in the files
directory. Is there a way to set headers for these file requests so I can allow CORS?
如何设置静态文件的HTTP标头?
- 写回答
- 好问题 0 提建议
- 追加酬金
- 关注问题
- 邀请回答
-
1条回答 默认 最新
- dsgsdg206050 2017-03-31 03:52关注
There is an official Gin middleware providing this functionality.
A Good starting template (from their examples)
func main() { router := gin.Default() // - No origin allowed by default // - GET,POST, PUT, HEAD methods // - Credentials share disabled // - Preflight requests cached for 12 hours config := cors.DefaultConfig() config.AllowOrigins = []string{"http://google.com"} config.AddAllowOrigins("http://facebook.com") // config.AllowOrigins == []string{"http://google.com", "http://facebook.com"} router.Use(cors.New(config)) router.Run() }
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报
悬赏问题
- ¥15 .xla后缀的文件拖到excel里什么内容也没有怎么办
- ¥20 Workbench中Mechanical打不开、闪退是什么原因?
- ¥240 MapReduce应用实践 学生课程
- ¥15 hlss视频显示AUTHORITY_INVALID
- ¥15 MAX9296A+MAX96717,美信gmsl解串有人做过吗?
- ¥15 求帮我解决一下inode 爆满的问题(有偿)
- ¥15 关于#vscode#的问题:布料滤波算法中C++实现pcl在Vscode中pcl库没有#include <pcl>
- ¥15 fpga:ov5640采集tft显示
- ¥100 python怎么连接wxSQLite3加密的数据库
- ¥20 创建taro项目,在vscode上能够写跨平台写微信小程序代码