第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何在 golang 中保存會(huì)話

如何在 golang 中保存會(huì)話

Go
萬千封印 2023-06-01 17:09:55
我正在嘗試使用大猩猩會(huì)話和 securecookie 在我的 golang 后端中保存已登錄的用戶 ID。這是我的包裹會(huì)議:package sessionimport (    "fmt"    "net/http"    "github.com/gorilla/securecookie"    "github.com/gorilla/sessions")var store = sessions.NewCookieStore(securecookie.GenerateRandomKey(32))//GetSessionLoggedID returns loggedIDfunc GetSessionLoggedID(r *http.Request) int {    storeAuth, _ := store.Get(r, "authentication")    if auth, ok := storeAuth.Values["loggedID"].(bool); ok && auth {        return storeAuth.Values["loggedID"].(int)    }    fmt.Println("none found")    return 0}//SetSessionLoggedID sets cookie session user IDfunc SetSessionLoggedID(w http.ResponseWriter, r *http.Request, id int) {    storeAuth, err := store.Get(r, "authentication")    if err != nil {        fmt.Println(err.Error())    }    storeAuth.Options = &sessions.Options{HttpOnly: true, Secure: true, MaxAge: 2628000, Path: "/"}    storeAuth.Values["loggedID"] = id    storeAuth.Save(r, w)}我有另一個(gè)包可以驗(yàn)證登錄用戶的電子郵件/密碼。這是功能:func (handler *UserHandler) checkPassword(w http.ResponseWriter, r *http.Request) {    var body struct {        Email    string        Password string    }    err := json.NewDecoder(r.Body).Decode(&body)    if err != nil {        http.Error(w, err.Error(), http.StatusInternalServerError)        return    }    loggedID, err := handler.UserUsecase.PasswordMatch(body.Email, body.Password)    if err != nil || loggedID == 0 {        http.Error(w, "Could not authenticate user", http.StatusUnauthorized)        return    }    session.SetSessionLoggedID(w, r, loggedID)    json.NewEncoder(w).Encode(struct {        ID int `json:"id"`    }{loggedID})}返回的 ID 是正確的。但是會(huì)話并沒有像我希望的那樣保存。session.GetSessionLoggedID(r)如果我在 checkpassword 函數(shù)的末尾添加一個(gè),我會(huì)得到“未找到”。我錯(cuò)過了什么?
查看完整描述

1 回答

?
波斯汪

TA貢獻(xiàn)1811條經(jīng)驗(yàn) 獲得超4個(gè)贊

// watch this line

if auth, ok := storeAuth.Values["loggedID"].(bool); ok && auth {

storeAuth.Values["loggedID"]不是bool,ok也是false,然后你得到“未找到”


改成


    if auth, ok := storeAuth.Values["loggedID"]; ok{

        return auth.(int)

    }

    fmt.Println("none found")


查看完整回答
反對 回復(fù) 2023-06-01
  • 1 回答
  • 0 關(guān)注
  • 175 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號