I can't find any normal way to get a query string params without using raw fasthttp queryString
Something like that can be very useful:
app.Get("/", func(c *fiber.Ctx) {
queryValue := c.Query().Get("param_key")
})
Thanx!
Thanks for opening your first issue here! 馃帀 Be sure to follow the issue template!
@Ivan-Feofanov welcome!
Did you try the Query() method? https://fiber.wiki/context#query
app.Get("/", func(c *fiber.Ctx) {
queryValue := c.Query("param_key")
})
@Ivan-Feofanov, did this solve your problem? Feel free to re-open this issue :+1:
Most helpful comment
@Ivan-Feofanov welcome!
Did you try the
Query()method? https://fiber.wiki/context#query