Golang : Gorrila set route name and get the current route name
Problem :
You want to know the current route that your user is using on your website and retrieve the name of the route. How to that with Gorrilla Web toolkit ?
Solution :
Before you can get the name of the route, first you need to give it a name.
For example :
mx := mux.NewRouter()
mx.HandleFunc("/", SayHelloWorld)
to
mx := mux.NewRouter()
mx.HandleFunc("/", SayHelloWorld).Name("home") // route named home
Next, get the current route from the user request(r *http.Request) and get the route name with GetName()
function.
func SayHelloWorld(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("Hello, World!"))
route := mux.CurrentRoute(r)
w.Write([]byte(fmt.Sprintf("Route name is %v ", route.GetName())))
}
Knowing the route name is useful in situation where you need to build URL. For example, to redirect user to the newly built URL.
References :
See also : Golang : Gorilla mux routing example
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+13.8k Golang : Get user input until a command or receive a word to stop
+7.1k Golang : Levenshtein distance example
+18.4k Golang : Get path name to current directory or folder
+33.8k Golang : All update packages with go get command
+7.9k Golang : Load DSA public key from file example
+16.2k Golang : How to check if input from os.Args is integer?
+11.4k Golang : Byte format example
+18.1k Golang : How to log each HTTP request to your web server?
+6.1k Golang : Function as an argument type example
+14.9k Golang : Send email with attachment(RFC2822) using Gmail API example
+14.6k Golang : How to determine if user agent is a mobile device example
+12.3k Golang : Detect user location with HTML5 geo-location