DEV Community

Cover image for 📖 Go Fiber by Examples: Delving into built-in functions

📖 Go Fiber by Examples: Delving into built-in functions

Vic Shóstak on August 24, 2021

Introduction Hey, DEV friends! 👋 As promised in last week's post, today I've posted the slightly edited Chapter 2 from my book for the...
Collapse
 
bitecode profile image
BC

we cannot use multiple wildcards (*) in the same endpoint at once.

This seems not accurate, according to the official doc: docs.gofiber.io/guide/routing#para...
You can put multiple * in the endpoint, and when get the parameter, you can use c.Params("*1") and c.Params("*2") respondingly.

Collapse
 
koddr profile image
Vic Shóstak

Hi,

The article was written when it was not yet available. Corrected it, thank you!

Collapse
 
mariusty profile image
mariusty

So detailed! Thank you!

Collapse
 
koddr profile image
Vic Shóstak

As always, you're welcome! 😉

Collapse
 
trad3r profile image
TRAD3R

Very nice article. Thank you!

Collapse
 
koddr profile image
Vic Shóstak

Thanks! You're welcome :)

Collapse
 
fabiosebastiano profile image
Fabio Simone Sebastiano

Very nice, keep posting! Thanks

Collapse
 
koddr profile image
Vic Shóstak

Thank you for reading! The new chapter will be out soon.

Collapse
 
yakar profile image
Aydın Yakar

Very nice article, thank you..

Collapse
 
koddr profile image
Vic Shóstak

You're welcome! Thanks for reading :)

Collapse
 
vinifrancosilva profile image
Vini Franco

Great content! Thank you very much for sharing!