Update README_zh-CN.md

pull/488/head
Vic Shóstak 2020-06-19 13:27:10 +03:00 committed by GitHub
parent 6e74dfe71a
commit e310d12c79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions

View File

@ -159,6 +159,18 @@ func main() {
// => Name: john, Age: // => Name: john, Age:
}) })
// GET /plantae/prunus.persica
app.Get("/plantae/:genus.:species", func(c *fiber.Ctx) {
fmt.Printf("Genius: %s, Species: %s", c.Params("genus"), c.Params("species"))
// => Genius: prunus, Species: persica
})
// GET /flights/LAX-SFO
app.Get("/flights/:from-:to", func(c *fiber.Ctx) {
fmt.Printf("From: %s, To: %s", c.Params("from"), c.Params("to"))
// => From: LAX, To: SFO
})
// GET /api/register // GET /api/register
app.Get("/api/*", func(c *fiber.Ctx) { app.Get("/api/*", func(c *fiber.Ctx) {
fmt.Printf("/api/%s", c.Params("*")) fmt.Printf("/api/%s", c.Params("*"))