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
+10.3k Golang : Generate 403 Forbidden to protect a page or prevent indexing by search engine
+19.9k Golang : Compare floating-point numbers
+31.2k Golang : bufio.NewReader.ReadLine to read file line by line
+5.9k PageSpeed : Clear or flush cache on web server
+9.3k Mac OSX : Get a process/daemon status information
+19.9k Golang : Reset or rewind io.Reader or io.Writer
+8.7k Android Studio : Image button and button example
+6.4k PHP : Shuffle to display different content or advertisement
+15.1k Golang : Accurate and reliable decimal calculations
+52.3k Golang : How to get struct field and value by name
+7.4k Golang : Dealing with struct's private part
+13.2k Golang : Read from buffered reader until specific number of bytes