dragon87836215 2017-03-30 09:24
浏览 123
已采纳

如何设置静态文件的HTTP标头?

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?

  • 写回答

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 关于库卡officelite无法与虚拟机通讯的问题
  • ¥15 qgcomp混合物线性模型分析的代码出现错误:Model aliasing occurred
  • ¥100 已有python代码,要求做成可执行程序,程序设计内容不多
  • ¥15 目标检测项目无法读取视频
  • ¥15 GEO datasets中基因芯片数据仅仅提供了normalized signal如何进行差异分析
  • ¥15 小红薯封设备能解决的来
  • ¥100 求采集电商背景音乐的方法
  • ¥15 数学建模竞赛求指导帮助
  • ¥15 STM32控制MAX7219问题求解答
  • ¥20 在本地部署CHATRWKV时遇到了AttributeError: 'str' object has no attribute 'requires_grad'