Golang : How to Set or Add Header http.ResponseWriter?
Problem :
How to set or add header to http.ResponseWriter?
Solution :
The solution is similar to previous tutorial on how to set or add header to HTTP Request. All you need to do is to use the Add() or Set() methods in the http.ResponseWriter.Header() function. (http://golang.org/pkg/net/http/#ResponseWriter)
For example :
package main
import (
"net/http"
"strings"
)
func SayHelloWorld(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("Hello, World!"))
}
func ReplyName(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Access-Control-Allow-Origin", "*") //<---------- here!
URISegments := strings.Split(r.URL.Path, "/")
w.Write([]byte(URISegments[1]))
}
func main() {
// http.Handler
mux := http.NewServeMux()
mux.HandleFunc("/", SayHelloWorld)
mux.HandleFunc("/replyname", ReplyName)
http.ListenAndServe(":8080", mux)
}
See also : Golang : Set or Add HTTP Request Headers
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.7k Golang: Pad right or print ending(suffix) zero or spaces in fmt.Printf example
+7.2k Golang : Detect sample rate, channels or latency with PortAudio
+18.5k Golang : Delete duplicate items from a slice/array
+47.2k Golang : Convert int to byte array([]byte)
+26.4k Golang : Convert file content into array of bytes
+9.2k Golang : Convert(cast) string to int64
+20.7k Golang : Clean up null characters from input data
+4.7k Google : Block or disable caching of your website content
+6.3k PHP : Shuffle to display different content or advertisement
+19.7k Golang : Convert seconds to human readable time format example