如果您像我一样有 Rails 背景,你可能也会在构建 Web 框架提供的所有功能方面遇到困难。...让我们开始吧。...() function
*/
type Route struct {
Name string
Method string
Path string
HandlerFunc...", "GET", "/", Index},
Route{"BookIndex", "GET", "/books", BookIndex},
Route{"Bookshow", "GET", "...)
router.Handle(route.Method, route.Path, handle)
}
return router
}
您的目录此时应该像这样:
.
├── handlers.go