1
0
mirror of https://github.com/astaxie/beego.git synced 2024-11-22 17:10:55 +00:00

fix the error refactor

This commit is contained in:
astaxie 2015-09-17 23:05:45 +08:00
parent 0d100fef7d
commit bb6062857b

View File

@ -204,7 +204,7 @@ type errorInfo struct {
} }
// map of http handlers for each error string. // map of http handlers for each error string.
var ErrorMaps map[string]*errorInfo = make(map[string]*errorInfo, 10) var ErrorMaps = make(map[string]*errorInfo, 10)
// show 401 unauthorized error. // show 401 unauthorized error.
func unauthorized(rw http.ResponseWriter, r *http.Request) { func unauthorized(rw http.ResponseWriter, r *http.Request) {
@ -390,7 +390,7 @@ func ErrorController(c ControllerInterface) *App {
// show error string as simple text message. // show error string as simple text message.
// if error string is empty, show 503 or 500 error as default. // if error string is empty, show 503 or 500 error as default.
func exception(errCode string, ctx *context.Context) { func exception(errCode string, ctx *context.Context) {
for ec, _ := range []string{errCode, "503", "500"} { for _, ec := range []string{errCode, "503", "500"} {
code, _ := strconv.Atoi(errCode) code, _ := strconv.Atoi(errCode)
if code == 0 { if code == 0 {
code = 503 code = 503