1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-18 12:44:14 +00:00

when call middle.Exception should set w.WriteHeader first

This commit is contained in:
astaxie 2013-12-18 21:00:45 +08:00
parent e01fbd497c
commit 079a41136e

View File

@ -294,6 +294,11 @@ func RegisterErrorHander() {
func Exception(errcode string, w http.ResponseWriter, r *http.Request, msg string) {
if h, ok := ErrorMaps[errcode]; ok {
isint, err := strconv.Atoi(errcode)
if err != nil {
isint = 500
}
w.WriteHeader(isint)
h(w, r)
return
} else {