Static (静态) 中间件

Static 中间件可已被用于服务从根目录中提供的静态文件。

用法

  1. e := echo.New()
  2. e.Use(middleware.Static("/static"))

上例为 static 目录下的静态文件提供服务。例如, 一个 /js/main.js 的请求将捕获并服务 static/js/main.js 文件。

自定义配置

用法

  1. e := echo.New()
  2. e.Use(middleware.StaticWithConfig(middleware.StaticConfig{
  3. Root: "static",
  4. Browse: true,
  5. }))

上例为 static 目录下的静态文件提供服务并启用目录浏览。

配置

  1. StaticConfig struct {
  2. // Skipper defines a function to skip middleware.
  3. Skipper Skipper
  4. // Root directory from where the static content is served.
  5. // Required.
  6. Root string `json:"root"`
  7. // Index file for serving a directory.
  8. // Optional. Default value "index.html".
  9. Index string `json:"index"`
  10. // Enable HTML5 mode by forwarding all not-found requests to root so that
  11. // SPA (single-page application) can handle the routing.
  12. // Optional. Default value false.
  13. HTML5 bool `json:"html5"`
  14. // Enable directory browsing.
  15. // Optional. Default value false.
  16. Browse bool `json:"browse"`
  17. }

默认配置

  1. DefaultStaticConfig = StaticConfig{
  2. Skipper: DefaultSkipper,
  3. Index: "index.html",
  4. }