当前位置: 首页>>代码示例>>Golang>>正文


Golang Context.GetGlobal方法代码示例

本文整理汇总了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{}
}
开发者ID:urandom,项目名称:readeef,代码行数:7,代码来源:context_util.go

示例2: GetRepo

func GetRepo(c context.Context) content.Repo {
	if v, ok := c.GetGlobal(CtxKey("repo")); ok {
		return v.(content.Repo)
	}

	return nil
}
开发者ID:urandom,项目名称:readeef,代码行数:7,代码来源:context_util.go

示例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)
}
开发者ID:urandom,项目名称:webfw,代码行数:9,代码来源:context_util.go

示例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")
}
开发者ID:urandom,项目名称:webfw,代码行数:8,代码来源:context_util.go

示例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{}
}
开发者ID:urandom,项目名称:webfw,代码行数:9,代码来源:context_util.go

示例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
}
开发者ID:yourchanges,项目名称:readeef,代码行数:15,代码来源:context_util.go

示例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{}
}
开发者ID:urandom,项目名称:webfw,代码行数:7,代码来源:context_util.go


注:本文中的github.com/urandom/webfw/context.Context.GetGlobal方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。