1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-28 10:34:13 +00:00

Merge pull request #738 from smallfish/master

Add CustomAbort() for Controller, support status code and body
This commit is contained in:
astaxie 2014-08-13 20:16:36 +08:00
commit 1f1190fbc3

View File

@ -274,6 +274,11 @@ func (c *Controller) Abort(code string) {
}
}
// CustomAbort stops controller handler and show the error data, it's similar Aborts, but support status code and body.
func (c *Controller) CustomAbort(status int, body string) {
c.Ctx.Abort(status, body)
}
// StopRun makes panic of USERSTOPRUN error and go to recover function if defined.
func (c *Controller) StopRun() {
panic(USERSTOPRUN)