Golang : Gorrila mux.Vars() function example
Gorrila Web toolkit mux.Vars() function usage example. Vars contains the URI variables of the current request.
For example :
URL : http://website:8080/person/Boo/CEO/199 and processed by
mx.HandleFunc("/person/{name}/{job}/{age:[0-199]+}", ProcessPathVariables)
Vars will returns the name
, job
and age
from r *http.Request
func ProcessPathVariables(w http.ResponseWriter, r *http.Request) {
// break down the variables for easier assignment
vars := mux.Vars(r)
name := vars["name"]
job := vars["job"]
age := vars["age"]
w.Write([]byte(fmt.Sprintf("Name is %s ", name)))
w.Write([]byte(fmt.Sprintf("Job is %s ", job)))
w.Write([]byte(fmt.Sprintf("Age is %s ", age)))
}
Reference :
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
+9k Golang : How to check if a string with spaces in between is numeric?
+26.5k Golang : Convert file content into array of bytes
+9.4k Javascript : Read/parse JSON data from HTTP response
+13.8k Golang : Reverse IP address for reverse DNS lookup example
+35k Golang : Strip slashes from string example
+4.7k Unix/Linux : secure copying between servers with SCP command examples
+12.4k Golang : Drop cookie to visitor's browser and http.SetCookie() example
+9.2k Golang : Extract or copy items from map based on value
+10.7k Nginx : TLS 1.2 support
+6.1k WARNING: UNPROTECTED PRIVATE KEY FILE! error message
+27.2k Golang : Convert integer to binary, octal, hexadecimal and back to integer
+18.6k Golang : Padding data for encryption and un-padding data for decryption