路由配置

每一个来自客户端的请求都会经过路由系统,因此路由系统的易用性对于一个 Web 框架来说是至关重要的。Flamego 在路由系统的设计和实现上花费了大量精力,在确保易用性的同时保留了未来的可扩展性。

路由是指 HTTP 请求方法和 URL 匹配模式的组合,并且每个路由都可以绑定多个处理器。

下面列举了对应不同 HTTP 请求的辅助方法:

  1. f.Get("/", ...)
  2. f.Patch("/", ...)
  3. f.Post("/", ...)
  4. f.Put("/", ...)
  5. f.Delete("/", ...)
  6. f.Options("/", ...)
  7. f.Head("/", ...)
  8. f.Connect("/", ...)
  9. f.Trace("/", ...)

Any 方法可以将单个路由与所有 HTTP 请求方法进行组合:

  1. f.Any("/", ...)

当你需要将单个路由与多个 HTTP 请求方法进行组合时,则可以使用 Routes 方法:

  1. f.Routes("/", "GET,POST", ...)
  2. // 或者
  3. f.Routes("/", http.MethodGet, http.MethodPost, ...)

术语

  • URL 路径块是指介于两个斜杠之间的部分,如 /<segment>/,且尾部的斜杠可以被省略
  • 绑定参数 使用花括号({})进行表示,并仅限用于动态路由

静态路由

静态路由是 Web 应用中最为常见的一种路由,即要求客户端的请求路径与配置的路径完整一致才能被匹配:

  1. f.Get("/user", ...)
  2. f.Get("/repo", ...)

上例中,任何不为 /user/repo 的请求路径都将收到 404。

注意

标准库的 net/http 允许用户使用 /user/ 来匹配所有以 /user 开头的请求路径,但在 Flamego 中这仍旧只是一个单纯的静态路由,所以要求客户端的请求路径与 /user/ 完全一致才能被匹配。

来看个例子就明白了:

  1. package main
  2. import (
  3. "github.com/flamego/flamego"
  4. )
  5. func main() {
  6. f := flamego.New()
  7. f.Get("/user/", func() string {
  8. return "You got it!"
  9. })
  10. f.Run()
  11. }

运行如下测试:

  1. $ curl http://localhost:2830/user
  2. 404 page not found
  3. $ curl http://localhost:2830/user/
  4. You got it!
  5. $ curl http://localhost:2830/user/info
  6. 404 page not found

动态路由

顾名思义,动态路由指的是可以进行动态匹配的路由配置。在撰写本文档时,Flamego 的动态路由在整个 Go 语言生态中依然首屈一指,无人望其项背。

flamego.Context 提供了一系列的辅助方法来获取动态路由中的绑定参数,包括:

  • Params 返回所有的绑定参数
  • Param 返回指定的绑定参数值
  • ParamInt 返回解析为 int 类型的绑定参数值
  • ParamInt64 返回解析为 int64 类型的绑定参数值

占位符

占位符可以用于匹配除了斜杠(/)以外的所有字符,并且在单个 URL 路径块中可以使用任意多个占位符。

下面列举了一些占位符的用法:

  1. f.Get("/users/{name}", ...)
  2. f.Get("/posts/{year}-{month}-{day}.html", ...)
  3. f.Get("/geo/{state}/{city}", ...)

在第 1 行,名为 {name} 的占位符会匹配整个 URL 路径块。

在第 2 行,{year}{month}{day} 这三个占位符会分别匹配 URL 路径块的三个部分。

在第 3 行,两个占位符由于在不同的 URL 路径块中,因此相互独立不受影响。

来看几个完整的例子:

  • 代码
  • 测试
  1. package main
  2. import (
  3. "fmt"
  4. "strings"
  5. "github.com/flamego/flamego"
  6. )
  7. func main() {
  8. f := flamego.New()
  9. f.Get("/users/{name}", func(c flamego.Context) string {
  10. return fmt.Sprintf("The user is %s", c.Param("name"))
  11. })
  12. f.Get("/posts/{year}-{month}-{day}.html", func(c flamego.Context) string {
  13. return fmt.Sprintf(
  14. "The post date is %d-%d-%d",
  15. c.ParamInt("year"), c.ParamInt("month"), c.ParamInt("day"),
  16. )
  17. })
  18. f.Get("/geo/{state}/{city}", func(c flamego.Context) string {
  19. return fmt.Sprintf(
  20. "Welcome to %s, %s!",
  21. strings.Title(c.Param("city")),
  22. strings.ToUpper(c.Param("state")),
  23. )
  24. })
  25. f.Run()
  26. }
  1. $ curl http://localhost:2830/users/joe
  2. The user is joe
  3. $ curl http://localhost:2830/posts/2021-11-26.html
  4. The post date is 2021-11-26
  5. $ curl http://localhost:2830/geo/ma/boston
  6. Welcome to Boston, MA!

提示

尝试执行 curl http://localhost:2830/posts/2021-11-abc.html 并观察输出的变化。

正则表达式

正则表达式可以被用来进一步限定绑定参数的匹配规则,并使用斜杠进行表示,如 /<regexp>/

下面列举了一些使用正则表达式定义的绑定参数:

  1. f.Get("/users/{name: /[a-zA-Z0-9]+/}", ...)
  2. f.Get("/posts/{year: /[0-9]{4}/}-{month: /[0-9]{2}/}-{day: /[0-9]{2}/}.html", ...)
  3. f.Get("/geo/{state: /[A-Z]{2}/}/{city}", ...)

在第 1 行,名为 {name} 的占位符会匹配整个 URL 路径块中的字母和数字。

在第 2 行,{year}{month}{day} 这三个占位符会分别匹配 URL 路径块中具有特定长度的数字。

在第 3 行,{state} 仅会匹配长度为 2 的大写字母。

提示

由于正则表达式自身是通过斜杠进行表示的,因此它们匹配规则不可以包含斜杠:

  1. panic: unable to parse route "/{name: /abc\\//}": 1:15: unexpected token "/" (expected "}")

来看几个完整的例子:

  • 代码
  • 测试
  1. package main
  2. import (
  3. "fmt"
  4. "strings"
  5. "github.com/flamego/flamego"
  6. )
  7. func main() {
  8. f := flamego.New()
  9. f.Get("/users/{name: /[a-zA-Z0-9]+/}",
  10. func(c flamego.Context) string {
  11. return fmt.Sprintf("The user is %s", c.Param("name"))
  12. },
  13. )
  14. f.Get("/posts/{year: /[0-9]{4}/}-{month: /[0-9]{2}/}-{day: /[0-9]{2}/}.html",
  15. func(c flamego.Context) string {
  16. return fmt.Sprintf(
  17. "The post date is %d-%d-%d",
  18. c.ParamInt("year"), c.ParamInt("month"), c.ParamInt("day"),
  19. )
  20. },
  21. )
  22. f.Get("/geo/{state: /[A-Z]{2}/}/{city}",
  23. func(c flamego.Context) string {
  24. return fmt.Sprintf(
  25. "Welcome to %s, %s!",
  26. strings.Title(c.Param("city")),
  27. c.Param("state"),
  28. )
  29. },
  30. )
  31. f.Run()
  32. }
  1. $ curl http://localhost:2830/users/joe
  2. The user is joe
  3. $ curl http://localhost:2830/posts/2021-11-26.html
  4. The post date is 2021-11-26
  5. $ curl http://localhost:2830/geo/MA/boston
  6. Welcome to Boston, MA!

提示

尝试运行以下测试并观察输出的变化:

  1. $ curl http://localhost:2830/users/logan-smith
  2. $ curl http://localhost:2830/posts/2021-11-abc.html
  3. $ curl http://localhost:2830/geo/ma/boston

通配符

使用通配符定义的绑定参数可以匹配多个 URL 路径块(包括斜杠)。通配符使用 ** 进行表示,并接受一个可选参数 capture 用于设定最多可匹配 URL 路径块的数量。

下面列举了一些使用通配符定义的绑定参数:

  1. f.Get("/posts/{**}", ...) // "{**: **}" 的语法糖
  2. f.Get("/webhooks/{repo: **}/events", ...)
  3. f.Get("/geo/{**: **, capture: 2}", ...)

在第 1 行,通配符会匹配所有以 /posts/ 开头的路径。

在第 2 行,通配符会匹配所有以 /webhooks/ 开头并以 /events 结尾的路径。

在第 3 行,通配符会匹配所有以 /geo/ 开头的路径,但最多匹配 2 个 URL 路径块。

来看几个完整的例子:

  • 代码
  • 测试
  1. package main
  2. import (
  3. "fmt"
  4. "strings"
  5. "github.com/flamego/flamego"
  6. )
  7. func main() {
  8. f := flamego.New()
  9. f.Get("/posts/{**}",
  10. func(c flamego.Context) string {
  11. return fmt.Sprintf("The post is %s", c.Param("**"))
  12. },
  13. )
  14. f.Get("/webhooks/{repo: **}/events",
  15. func(c flamego.Context) string {
  16. return fmt.Sprintf("The event is for %s", c.Param("repo"))
  17. },
  18. )
  19. f.Get("/geo/{**: **, capture: 2}",
  20. func(c flamego.Context) string {
  21. fields := strings.Split(c.Param("**"), "/")
  22. return fmt.Sprintf(
  23. "Welcome to %s, %s!",
  24. strings.Title(fields[1]),
  25. strings.ToUpper(fields[0]),
  26. )
  27. },
  28. )
  29. f.Run()
  30. }
  1. $ curl http://localhost:2830/posts/2021/11/26.html
  2. The post is 2021-11-26.html
  3. $ curl http://localhost:2830/webhooks/flamego/flamego/events
  4. The event is for flamego/flamego
  5. $ curl http://localhost:2830/geo/ma/boston
  6. Welcome to Boston, MA!

提示

尝试运行以下测试并观察输出的变化:

  1. $ curl http://localhost:2830/webhooks/flamego/flamego
  2. $ curl http://localhost:2830/geo/ma/boston/02125

组合路由

当不同的 HTTP 方法需要与相同的一个路由进行组合时,可以使用 Combo 方法进行简写:

  1. f.Combo("/").Get(...).Post(...)

组路由

通过分组的方式对路由进行管理可以有效提升代码的可读性和中间件的复用。使用 Group 方法将可以将多个路由进行分组,分组内还可以嵌套更多的分组,并且嵌套的层数是没有限制的:

  1. f.Group("/user", func() {
  2. f.Get("/info", ...)
  3. f.Group("/settings", func() {
  4. f.Get("", ...)
  5. f.Get("/account_security", ...)
  6. }, middleware3)
  7. }, middleware1, middleware2)

在第 4 行的路径使用了空字符串,这是完全合法的使用方法,其等价于下面的配置:

  1. f.Get("/user/settings", ...)

how does that work

这是因为 Flamego 的路由系统对组路由内的子路由使用字符串拼接的方式来计算最终路径路由配置 - 图2在新窗口打开

因此,下面用法也是合法的:

  1. f.Group("/user", func() {
  2. f.Get("/info", ...)
  3. f.Group("/sett", func() {
  4. f.Get("ings", ...)
  5. f.Get("ings/account_security", ...)
  6. }, middleware3)
  7. }, middleware1, middleware2)

可选路由

静态路由和动态路由均可被配置成可选路由,其使用问号(?)进行表示:

  1. f.Get("/user/?settings", ...)
  2. f.Get("/users/?{name}", ...)

上面的用法等价的配置如下:

  1. f.Get("/user", ...)
  2. f.Get("/user/settings", ...)
  3. f.Get("/users", ...)
  4. f.Get("/users/{name}", ...)

注意

可选路由只可被用于匹配最后一个 URL 路径块,并仅限在单个路由上配置一次。

匹配请求头

🆕 v1.5.0 版本新增

你可以在匹配请求路径的基础上要求某个路由还需要匹配相应的请求头:

  1. f.Get("/", ...).Headers(
  2. "User-Agent", "Chrome", // 宽松匹配
  3. "Host", "^flamego\.dev$", // 精准匹配
  4. "Cache-Control", "", // 只要 "Cache-Control" 不为空
  5. )

Headers 方法接受用于表示匹配请求头的键值对列表,键名对应请求头的名称,键值则是用于匹配的正则表达式。

当某个路由在请求头匹配环节失败时,Flame 实例会继续尝试匹配其它路由而不会中断匹配流程。

匹配优先级

随着 Web 应用的复杂化,配置的路由也会越来越多,此时对于路由之间匹配优先级的理解就显得至关重要。

匹配优先级是基于不同的 URL 匹配模式、匹配范围(范围越小优先级越高)和注册顺序决定的,具体如下:

  1. 静态路由总是被优先匹配,如 /users/settings
  2. 不匹配整个 URL 路径块的占位符,如 /users/{name}.html
  3. 匹配整个 URL 路径块的占位符,如 /users/{name}.
  4. 匹配中间路径的通配符,如 /users/{**}/events.
  5. 匹配剩余路径的通配符,如 /users/{**}.

构建 URL 路径

URLPath 方法可以根据路由的名称构建其完整的路径:

  1. f.Get("/user/?settings", ...).Name("UserSettings")
  2. f.Get("/users/{name}", ...).Name("UsersName")
  3. f.Get(..., func(c flamego.Context) {
  4. c.URLPath("UserSettings") // => /user
  5. c.URLPath("UserSettings", "withOptional", "true") // => /user/settings
  6. c.URLPath("UsersName", "name", "joe") // => /users/joe
  7. })

自定义 NotFound 处理器

默认情况下,http.NotFound路由配置 - 图3在新窗口打开 函数会被用于响应 404 状态码的页面,但可以通过 NotFound 方法进行自定义:

  1. f.NotFound(func() string {
  2. return "This is a cool 404 page"
  3. })

自动注册 HEAD 方法

默认情况下,使用 Get 方法注册的路由只会接受 HTTP GET 方法的请求,但部分 Web 应用可能会希望同时支持 HEAD 请求。

调用 AutoHead 方法可以在注册任意路由的 GET 方法的处理器时,自动为该路由的 HEAD 方法也注册相同的处理器:

  1. f.Get("/without-head", ...)
  2. f.AutoHead(true)
  3. f.Get("/with-head", ...)

需要注意的是,该行为仅会在调用 AutoHead(true) 之后的路由配置生效,并不会影响已经配置好的路由。

如上例中,/with-head 路径同时接受 GET 和 HEAD 请求,而 /without-head 路径仅接受 GET 请求。