本文介绍了如何在http.ResponseWriter上设置HTTP状态代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在 http.ResponseWriter
上设置HTTP状态代码(例如,设置为500或403)?
How do I set the HTTP status code on an http.ResponseWriter
(e.g. to 500 or 403)?
我可以看到请求通常附有状态码200.
I can see that requests normally have a status code of 200 attached to them.
推荐答案
使用 http.ResponseWriter.WriteHeader
.从文档中:
Use http.ResponseWriter.WriteHeader
. From the documentation:
示例:
func ServeHTTP(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusInternalServerError)
w.Write([]byte("500 - Something bad happened!"))
}
这篇关于如何在http.ResponseWriter上设置HTTP状态代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!