Tango 是一个微内核易扩展的Go语言Web框架.
安装Tango:
go get github.com/lunny/tango
最简单的例子:
package main
import "github.com/lunny/tango"
func main() {
t := tango.Classic()
t.Get("/", func() string {
return "Hello tango!"
})
t.Run()
}
然后在浏览器访问http://localhost:8000
即可。当然了,tango其实对struct形式的支持更好。比如:
package main
import "github.com/lunny/tango"
type Action struct {
tango.Json
}
func (Action) Get() map[string]string {
return map[string]string{
"say": "Hello tango!",
}
}
func main() {
t := tango.Classic()
t.Get("/", new(Action))
t.Run()
}
这段代码因为拥有一个内嵌的tango.Json
,所以返回值会被自动的转成Json。具体返回可以参见以下文档。
http.Handler
中间件让你像切面编程那样来操作你的Controller。
目前已有很多 中间件,可以帮助你来简化工作:
QQ群:369240307
This project is under BSD License. See the LICENSE file for the full license text.