當前位置: 首頁>>代碼示例>>Golang>>正文


Golang session.SessionStore類代碼示例

本文整理匯總了Golang中github.com/c-darwin/dcoin-go/vendor/src/github.com/astaxie/beego/session.SessionStore的典型用法代碼示例。如果您正苦於以下問題:Golang SessionStore類的具體用法?Golang SessionStore怎麽用?Golang SessionStore使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了SessionStore類的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: GetSessPublicKey

func GetSessPublicKey(sess session.SessionStore) string {
	sessPublicKey := sess.Get("public_key")
	switch sessPublicKey.(type) {
	default:
		return ""
	case string:
		return sessPublicKey.(string)
	}
	return ""
}
開發者ID:dzyk,項目名稱:dcoin-go,代碼行數:10,代碼來源:common.go

示例2: GetSessRestricted

func GetSessRestricted(sess session.SessionStore) int64 {
	sessRestricted := sess.Get("restricted")
	switch sessRestricted.(type) {
	default:
		return 0
	case int64:
		return sessRestricted.(int64)
	}
	return 0
}
開發者ID:dzyk,項目名稱:dcoin-go,代碼行數:10,代碼來源:common.go

示例3: GetSessInt64

func GetSessInt64(sessName string, sess session.SessionStore) int64 {
	sess_ := sess.Get(sessName)
	switch sess_.(type) {
	default:
		return 0
	case int64:
		return sess_.(int64)
	}
	return 0
}
開發者ID:dzyk,項目名稱:dcoin-go,代碼行數:10,代碼來源:common.go

示例4: GetSessAdmin

func GetSessAdmin(sess session.SessionStore) int64 {
	admin := sess.Get("admin")
	switch admin.(type) {
	case int64:
		return admin.(int64)
	default:
		return 0
	}
	return 0
}
開發者ID:dzyk,項目名稱:dcoin-go,代碼行數:10,代碼來源:common.go

示例5: GetSessUserId

func GetSessUserId(sess session.SessionStore) int64 {
	sessUserId := sess.Get("user_id")
	log.Debug("sessUserId: %v", sessUserId)
	switch sessUserId.(type) {
	case int64:
		return sessUserId.(int64)
	case int:
		return int64(sessUserId.(int))
	case string:
		return utils.StrToInt64(sessUserId.(string))
	default:
		return 0
	}
	return 0
}
開發者ID:dzyk,項目名稱:dcoin-go,代碼行數:15,代碼來源:common.go

示例6: DelSessResctricted

func DelSessResctricted(sess session.SessionStore) {
	sess.Delete("restricted")
}
開發者ID:dzyk,項目名稱:dcoin-go,代碼行數:3,代碼來源:common.go


注:本文中的github.com/c-darwin/dcoin-go/vendor/src/github.com/astaxie/beego/session.SessionStore類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。