1 ZH_Actions
Lunny Xiao edited this page 2015-04-14 21:55:09 +08:00

Actions

File

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

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

Dir

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

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