本文整理汇总了Golang中github.com/lunny/tango.Context.Action方法的典型用法代码示例。如果您正苦于以下问题:Golang Context.Action方法的具体用法?Golang Context.Action怎么用?Golang Context.Action使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/lunny/tango.Context
的用法示例。
在下文中一共展示了Context.Action方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: Handle
func (rh *RecoveryHandler) Handle(ctx *tango.Context) {
// capture render-controller error
if render, ok := ctx.Action().(ITheme); ok {
if err, ok := ctx.Result.(tango.AbortError); ok {
render.RenderError(err.Code(), err)
return
}
if err, ok := ctx.Result.(error); ok {
ctx.WriteHeader(500)
render.RenderError(ctx.Status(), err)
return
}
}
// capture abort error
/*
if err, ok := ctx.Result.(tango.AbortError); ok {
ctx.WriteHeader(err.Code())
theme := new(ThemeRender)
theme.SetTheme(nil)
theme.RenderError(err.Code(), err)
return
}*/
// unexpected error
tango.Errors()(ctx)
}
示例2: Handle
// Handle implement tango.Handle
func (c *Caches) Handle(ctx *tango.Context) {
if action := ctx.Action(); ctx != nil {
if s, ok := action.(Cacher); ok {
s.SetCaches(c)
}
}
ctx.Next()
}