错误处理

我们在做 Web 开发的时候,经常需要页面跳转和错误处理,Beego 这方面也进行了考虑,通过 Redirect 方法来进行跳转:

  1. func (this *AddController) Get() {
  2. this.Redirect("/", 302)
  3. }

如何中止此次请求并抛出异常,Beego 可以在控制器中这样操作:

  1. func (this *MainController) Get() {
  2. this.Abort("401")
  3. v := this.GetSession("asta")
  4. if v == nil {
  5. this.SetSession("asta", int(1))
  6. this.Data["Email"] = 0
  7. } else {
  8. this.SetSession("asta", v.(int)+1)
  9. this.Data["Email"] = v.(int)
  10. }
  11. this.TplName = "index.tpl"
  12. }

这样 this.Abort("401") 之后的代码不会再执行,而且会默认显示给用户如下页面:

错误处理 - 图1

web 框架默认支持 401、403、404、500、503 这几种错误的处理。用户可以自定义相应的错误处理,例如下面重新定义 404 页面:

  1. func page_not_found(rw http.ResponseWriter, r *http.Request){
  2. t,_:= template.New("404.html").ParseFiles(web.BConfig.WebConfig.ViewsPath+"/404.html")
  3. data :=make(map[string]interface{})
  4. data["content"] = "page not found"
  5. t.Execute(rw, data)
  6. }
  7. func main() {
  8. web.ErrorHandler("404",page_not_found)
  9. web.Router("/", &controllers.MainController{})
  10. web.Run()
  11. }

我们可以通过自定义错误页面 404.html 来处理 404 错误。

Beego 更加人性化的还有一个设计就是支持用户自定义字符串错误类型处理函数,例如下面的代码,用户注册了一个数据库出错的处理页面:

  1. func dbError(rw http.ResponseWriter, r *http.Request){
  2. t,_:= template.New("dberror.html").ParseFiles(web.BConfig.WebConfig.ViewsPath+"/dberror.html")
  3. data :=make(map[string]interface{})
  4. data["content"] = "database is now down"
  5. t.Execute(rw, data)
  6. }
  7. func main() {
  8. web.ErrorHandler("dbError",dbError)
  9. web.Router("/", &controllers.MainController{})
  10. web.Run()
  11. }

一旦在入口注册该错误处理代码,那么你可以在任何你的逻辑中遇到数据库错误调用 this.Abort("dbError") 来进行异常页面处理。

Controller 定义 Error

从 1.4.3 版本开始,支持 Controller 方式定义 Error 错误处理函数,这样就可以充分利用系统自带的模板处理,以及 context 等方法。

  1. package controllers
  2. import (
  3. "github.com/beego/beego/v2/server/web"
  4. )
  5. type ErrorController struct {
  6. web.Controller
  7. }
  8. func (c *ErrorController) Error404() {
  9. c.Data["content"] = "page not found"
  10. c.TplName = "404.tpl"
  11. }
  12. func (c *ErrorController) Error501() {
  13. c.Data["content"] = "server error"
  14. c.TplName = "501.tpl"
  15. }
  16. func (c *ErrorController) ErrorDb() {
  17. c.Data["content"] = "database is now down"
  18. c.TplName = "dberror.tpl"
  19. }

通过上面的例子我们可以看到,所有的函数都是有一定规律的,都是 Error 开头,后面的名字就是我们调用 Abort 的名字,例如 Error404 函数其实调用对应的就是 Abort("404")

我们就只要在 web.Run 之前采用 web.ErrorController 注册这个错误处理函数就可以了

  1. package main
  2. import (
  3. _ "btest/routers"
  4. "btest/controllers"
  5. "github.com/Beego/Beego/v2/server/web"
  6. )
  7. func main() {
  8. web.ErrorController(&controllers.ErrorController{})
  9. web.Run()
  10. }

从 panic 中恢复

如果你希望用户在服务器处理请求过程中,即便发生了 panic 依旧能够返回响应,那么可以使用 Beego 的恢复机制。该机制是默认开启的。依赖于配置项:

  1. web.BConfig.RecoverPanic = true

如果你需要关闭,那么将这个配置项设置为false就可以。

如果你想自定义panic之后的处理行为,那么可以重新设置web.BConfig.RecoverFunc

例如:

  1. web.BConfig.RecoverFunc = func(context *context.Context, config *web.Config) {
  2. if err := recover(); err != nil {
  3. context.WriteString(fmt.Sprintf("you panic, err: %v", err))
  4. }
  5. }

千万要注意:你永远需要检测recover的结果,并且将从panic中恢复过来的逻辑放在检测到recover返回不为nil的代码里面。

相关内容

-Controller API - 中断