您好,登錄后才能下訂單哦!
1. 若沒有填寫 max_age, expires ,默認都為None
此時該cooike為臨時的,只存在瀏覽器內存中, 關閉瀏覽器則自動刪除
2. 只有max_age, 則按秒計算過期時間, 瀏覽器會存在本地緩存路徑, 并自動刪除過期cookie
3. 只有expires, 則按照時間字符串計算過期時間, 瀏覽器會存在本地緩存路徑, 自動刪除過期cookie
3. 若 max_age和 expires 同時存在, 則默認使用 max_age
4. 如果設置的cookie時間小于計算機時間, 瀏覽器則不提取cookie
max_age = 60*60*24 #按秒計算
expires格式可以為:
1.時間格式的字符串 : " Wdy, DD-Mth-YY HH:MM:SS GMT "
2.秒數
3.datetime.datetime 對象
例:
expires = 'Thu, 28-May-2020 08:53:06 GMT' # 24小時 格林威治時間
expires = datetime.datetime(2020, 5, 28, 23, 44, 55))
expires = 60 * 60 * 24
from django.conf import settings
import datetime
def set_cookie(response, key, value, expire=None):
if expire is None:
max_age = 365*24*60*60 #默認max_age為一年, 如果存在expires,則覆蓋max_age
else:
max_age = expire
expires = datetime.datetime.strftime(datetime.datetime.utcnow() + datetime.timedelta(seconds=max_age), "%a, %d-%b-%Y %H:%M:%S GMT")
response.set_cookie(key, value, max_age=max_age, expires=expires,
domain=settings.SESSION_COOKIE_DOMAIN, secure=settings.SESSION_COOKIE_SECURE or None)
本文參考并總結: https://www.djangosnippets.org/snippets/40/
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。