ThinkGo 是一個輕量級的 Go 語言 MVC 框架,目前支持路由、中間件、控制器、請求、響應、Session、視圖、日誌等 web 框架應該具有的基本功能,致力於讓代碼簡潔、富於表達力,幫助開發者快速構建一個 Web 應用。git
go get -u github.com/thinkoner/thinkgo
package main import ( "github.com/thinkoner/thinkgo" "fmt" "github.com/thinkoner/thinkgo/router" "github.com/thinkoner/thinkgo/context" ) func main() { app := thinkgo.BootStrap() app.RegisterRoute(func(route *router.Route) { route.Get("/", func(req *context.Request) *context.Response { return thinkgo.Text("Hello ThinkGo !") }) route.Get("/ping", func(req *context.Request) *context.Response { return thinkgo.Json(map[string]string{ "message": "pong", }) }) // Dependency injection route.Get("/user/{name}", func(req *context.Request, name string) *context.Response { return thinkgo.Text(fmt.Sprintf("Hello %s !", name)) }) }) // listen and serve on 0.0.0.0:9011 app.Run() }
GitHub: https://github.com/thinkoner/...github
Gitee: https://gitee.com/thinkgo/thi...web
大佬們來指點指點,貢獻貢獻代碼。。。app