本文整理汇总了Golang中github.com/urandom/webfw/context.Context.GetGlobal方法的典型用法代码示例。如果您正苦于以下问题:Golang Context.GetGlobal方法的具体用法?Golang Context.GetGlobal怎么用?Golang Context.GetGlobal使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/urandom/webfw/context.Context
的用法示例。
在下文中一共展示了Context.GetGlobal方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: GetConfig
func GetConfig(c context.Context) Config {
if v, ok := c.GetGlobal(CtxKey("config")); ok {
return v.(Config)
}
return Config{}
}
示例2: GetRepo
func GetRepo(c context.Context) content.Repo {
if v, ok := c.GetGlobal(CtxKey("repo")); ok {
return v.(content.Repo)
}
return nil
}
示例3: GetLogger
// GetLogger returns the error logger, to be used if an error occurs during
// a request.
func GetLogger(c context.Context) Logger {
if val, ok := c.GetGlobal(context.BaseCtxKey("logger")); ok {
return val.(Logger)
}
return NewStandardLogger(os.Stderr, "", 0)
}
示例4: GetRenderer
// GetRenderer returns the current raw renderer from the context.
func GetRenderer(c context.Context) renderer.Renderer {
if val, ok := c.GetGlobal(context.BaseCtxKey("renderer")); ok {
return val.(renderer.Renderer)
}
return renderer.NewRenderer("template", "base.tmpl")
}
示例5: GetConfig
// GetConfig is a helper function for getting the current config
// from the request context.
func GetConfig(c context.Context) Config {
if val, ok := c.GetGlobal(context.BaseCtxKey("config")); ok {
return val.(Config)
}
return Config{}
}
示例6: GetDB
func GetDB(c context.Context) DB {
if v, ok := c.GetGlobal(CtxKey("db")); ok {
return v.(DB)
}
conf := GetConfig(c)
db := NewDB(conf.DB.Driver, conf.DB.Connect)
if err := db.Connect(); err != nil {
panic(err)
}
return db
}
示例7: GetDispatcher
// GetDispatcher returns the request dispatcher.
func GetDispatcher(c context.Context) *Dispatcher {
if val, ok := c.GetGlobal(context.BaseCtxKey("dispatcher")); ok {
return val.(*Dispatcher)
}
return &Dispatcher{}
}