Update ctx.md

pull/2510/head v2.47.0
RW 2023-06-19 10:49:25 +02:00 committed by GitHub
parent 204b01aeb2
commit 9bcdb560dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1112,7 +1112,7 @@ app.Get("/", func(c *fiber.Ctx) error {
// GET /api/posts?filters.author.name=John&filters.category.name=Technology
app.Get("/", func(c *fiber.Ctx) error {
m := c.Queies()
m := c.Queries()
m["filters.author.name"] // John
m["filters.category.name"] // Technology
})