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


Golang Store.Set方法代碼示例

本文整理匯總了Golang中github.com/macaron-contrib/session.Store.Set方法的典型用法代碼示例。如果您正苦於以下問題:Golang Store.Set方法的具體用法?Golang Store.Set怎麽用?Golang Store.Set使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在github.com/macaron-contrib/session.Store的用法示例。


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

示例1: handleOAuth2Callback

func handleOAuth2Callback(f *oauth2.Config, s session.Store, w http.ResponseWriter, r *http.Request) {
	next := extractPath(r.URL.Query().Get("state"))
	code := r.URL.Query().Get("code")
	t, err := f.Exchange(oauth2.NoContext, code)
	if err != nil {
		// Pass the error message, or allow dev to provide its own
		// error handler.
		http.Redirect(w, r, PathError, codeRedirect)
		return
	}
	// Store the credentials in the session.
	val, _ := json.Marshal(t)
	s.Set(keyToken, val)
	http.Redirect(w, r, next, codeRedirect)
}
開發者ID:gorelease,項目名稱:oauth2,代碼行數:15,代碼來源:oauth2.go

示例2: handleOAuth2Callback

func handleOAuth2Callback(ctx *macaron.Context, s session.Store, opt *Options) {
	next := extractPath(ctx.Query("state"))
	code := ctx.Query("code")
	t, err := opt.NewTransportFromCode(code)
	if err != nil {
		// Pass the error message, or allow dev to provide its own
		// error handler.
		println(err.Error())
		ctx.Redirect(PathError)
		return
	}
	// Store the credentials in the session.
	val, _ := json.Marshal(t.Token())
	s.Set(KEY_TOKEN, val)
	ctx.Redirect(next)
}
開發者ID:maxwhale,項目名稱:docker-gogs-centos,代碼行數:16,代碼來源:social.go

示例3: Login

func (u *User) Login(sess session.Store) {
	sess.Set("uid", u.Id)
}
開發者ID:trigrass2,項目名稱:tech_oa,代碼行數:3,代碼來源:user.go

示例4: mySessionHandler

func mySessionHandler(sess session.Store) string {
	sess.Set("session", "session middleware")
	return sess.Get("session").(string)
}
開發者ID:james2doyle,項目名稱:macaron-example,代碼行數:4,代碼來源:main.go


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