本文整理匯總了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{}
}