“Como definir o código de status Golang http” Respostas de código

Como definir o código de status Golang http

func ServeHTTP(w http.ResponseWriter, r *http.Request) {
    w.WriteHeader(http.StatusInternalServerError)
    w.Write([]byte("500 - Something bad happened!"))
}
Restu Wahyu Saputra

Como definir o código de status Golang http

rw.WriteHeader(http.StatusBadRequest)
Restu Wahyu Saputra

Respostas semelhantes a “Como definir o código de status Golang http”

Perguntas semelhantes a “Como definir o código de status Golang http”

Mais respostas relacionadas para “Como definir o código de status Golang http” em Go

Procure respostas de código populares por idioma

Procurar outros idiomas de código