mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 13:00:54 +00:00
beego:update the Abort Status
This commit is contained in:
parent
d17f107fc4
commit
91ee42ceeb
@ -42,7 +42,7 @@ func (ctx *Context) Redirect(status int, localurl string) {
|
|||||||
// if middleware.ErrorMaps exists, panic body.
|
// if middleware.ErrorMaps exists, panic body.
|
||||||
// if middleware.HTTPExceptionMaps exists, panic HTTPException struct with status and body string.
|
// if middleware.HTTPExceptionMaps exists, panic HTTPException struct with status and body string.
|
||||||
func (ctx *Context) Abort(status int, body string) {
|
func (ctx *Context) Abort(status int, body string) {
|
||||||
ctx.Output.SetStatus(status)
|
ctx.ResponseWriter.WriteHeader(status)
|
||||||
// first panic from ErrorMaps, is is user defined error functions.
|
// first panic from ErrorMaps, is is user defined error functions.
|
||||||
if _, ok := middleware.ErrorMaps[body]; ok {
|
if _, ok := middleware.ErrorMaps[body]; ok {
|
||||||
panic(body)
|
panic(body)
|
||||||
|
Loading…
Reference in New Issue
Block a user