您好,登錄后才能下訂單哦!
本文實例講述了Django利用cookie保存用戶登錄信息的方法。分享給大家供大家參考,具體如下:
設置cookie
response對象.set_cookie('key','value',多少秒后過期)
獲取cookie
request對象.COOKIES.get('key')
我們繼續前一篇的代碼
def hi(request): msg = {'result':''} loginSuccess = False # 是否登錄成功標識 if user.userLogin(request.POST.get('username'),request.POST.get('pwd')): loginSuccess = True msg['result'] = '登錄成功' elif request.COOKIES.get('userlogin_username') != None : msg['result'] = '已經登錄,當前用戶是:' + request.COOKIES.get('userlogin_username') else: msg['result'] = '登錄失敗' myReponse = render_to_response("index.html",msg) # 如果登錄成功,則設置cookies if loginSuccess: myReponse.set_cookie('userlogin_username',request.POST.get('username'),3600) return myReponse
hi()
方法接收了一個request對象;最后返回一個response對象(該對象由render_to_response函數生成)
希望本文所述對大家基于Django框架的Python程序設計有所幫助。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。