静态文件

静态文件的服务,可以有两种方式来进行,一种是中间件,另一种是直接使用内置的Actions。

使用中间件

Static 让你用一行代码可以完成一个静态服务器。

  1. func main() {
  2. t := tango.New(tango.Static())
  3. t.Run()
  4. }

然后,将你的文件放到 ./public 目录下,你就可以通过浏览器放问到他们。比如:

  1. http://localhost/images/logo.png --> ./public/images/logo.png

当然,你也可以加入你basicauth或者你自己的认证中间件,这样就变为了一个私有的文件服务器。

  1. func main() {
  2. t := tango.New()
  3. t.Use(AuthHandler)
  4. t.Use(tango.Static())
  5. t.Run()
  6. }

你也可以通过StaticOptions来改变Static的默认参数,比如:

  1. t.Use(tango.Static(tango.StaticOptions{Prefix:"static"}))

内置Actions

File Action

  1. tg := tango.New()
  2. tg.Get("/index.html", tango.File("./public/index.html"))
  3. tg.Run()

然后在浏览器访问 http://localhost:8000/index.html

Dir Action

  1. tg := tango.New()
  2. tg.Get("/:name", tango.Dir("./public"))
  3. tg.Run()

然后在浏览器访问 http://localhost:8000/test.html