top | item 13930061 (no title) grennis | 9 years ago After seeing URL string parsing in application code I would have expected to see at least some sort of discussion about third-party web frameworks. discuss order hn newest viiralvx|9 years ago Even a web framework isn't necessary. Most people get around that nastiness using gorilla/mux: https://github.com/gorilla/mux cube2222|9 years ago Don't you worry, it's not done like that.Either you use query params, or you use a library like gorilla, where you just insert pattern variables into the url.
viiralvx|9 years ago Even a web framework isn't necessary. Most people get around that nastiness using gorilla/mux: https://github.com/gorilla/mux
cube2222|9 years ago Don't you worry, it's not done like that.Either you use query params, or you use a library like gorilla, where you just insert pattern variables into the url.
viiralvx|9 years ago
cube2222|9 years ago
Either you use query params, or you use a library like gorilla, where you just insert pattern variables into the url.