本文整理匯總了Golang中github.com/c-darwin/dcoin-go/vendor/src/github.com/astaxie/beego/session.SessionStore.Get方法的典型用法代碼示例。如果您正苦於以下問題:Golang SessionStore.Get方法的具體用法?Golang SessionStore.Get怎麽用?Golang SessionStore.Get使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/c-darwin/dcoin-go/vendor/src/github.com/astaxie/beego/session.SessionStore
的用法示例。
在下文中一共展示了SessionStore.Get方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的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 ""
}
示例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
}
示例3: GetSessAdmin
func GetSessAdmin(sess session.SessionStore) int64 {
admin := sess.Get("admin")
switch admin.(type) {
case int64:
return admin.(int64)
default:
return 0
}
return 0
}
示例4: 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
}
示例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
}