mirror of
https://github.com/gofiber/fiber.git
synced 2025-02-22 21:03:57 +00:00
Update README_nl.md
This commit is contained in:
parent
27f5d1c24a
commit
73aed4d042
12
.github/README_nl.md
vendored
12
.github/README_nl.md
vendored
@ -159,6 +159,18 @@ func main() {
|
||||
fmt.Printf("Name: %s, Age: %s", c.Params("name"), c.Params("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
|
||||
app.Get("/api/*", func(c *fiber.Ctx) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user