當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。