Golang : Set or add headers for many or different handlers
Problem :
In Golang, setting headers can be done easily with the Set() method.
At the moment, you are setting headers for each individual handler in such as manner :
func handlerA(w http.ResponseWriter, req *http.Request) {
w.Header().Set("X-Frame-Options", "SAMEORIGIN")
w.Header().Set("Content-Type", "text/plain")
w.Write([]byte("Set header for handler A."))
}
func handlerB(w http.ResponseWriter, req *http.Request) {
w.Header().Set("X-Frame-Options", "SAMEORIGIN")
w.Header().Set("Content-Type", "text/plain")
w.Write([]byte("Set header for handler B."))
}
Instead of setting header for each individual handler manually, you want to use a function to set the headers.
NOTE : This method can apply to Add headers as well
Solution :
Create a common SetHeaders()
function that will write to http.ResponseWriter. For example :
func SetHeaders(w http.ResponseWriter) {
w.Header().Set("X-Frame-Options", "SAMEORIGIN")
w.Header().Set("Content-Type", "text/plain")
}
func handlerA(w http.ResponseWriter, req *http.Request) {
SetHeaders(w)
w.Write([]byte("Set header for handler A."))
}
func handlerB(w http.ResponseWriter, req *http.Request) {
SetHeaders(w)
w.Write([]byte("Set header for handler B."))
}
See also : Golang : How to Set or Add Header http.ResponseWriter?
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
+5k Linux/Unix/MacOSX : Find out which application is listening to port 80 or use which IP version
+21.6k Golang : Setting up/configure AWS credentials with official aws-sdk-go
+9k Golang : Simple histogram example
+5.3k Golang : Qt update UI elements with core.QCoreApplication_ProcessEvents
+5.3k Javascript : How to loop over and parse JSON data?
+19.2k Golang : Fix cannot download, $GOPATH not set error
+5.2k Python : Convert(cast) string to bytes example
+7.7k Golang : Ways to recover memory during run time.
+25.3k Golang : convert rune to integer value
+26.7k Golang : Find files by extension
+11.8k Golang : Clean formatting/indenting or pretty print JSON result
+5.2k Javascript : Change page title to get viewer attention