-
要注銷已通過
django.contrib.auth.login()
django.contrib.auth.logout()
HttpRequest
from django.contrib.auth import logout def logout_view(request): logout(request) # Redirect to a success page.
請注意,如果用戶未登錄,
logout()
當您調用
logout()
after
調用django.contrib.auth.logout()
本文介紹 django.contrib.auth.logout
的用法。
聲明
logout(request)
相關用法
- Python PIL logical_and() and logical_or()用法及代碼示例
- Python Django login用法及代碼示例
- Python logging.handlers.SocketHandler.makePickle用法及代碼示例
- Python PIL logical_xor() and invert()用法及代碼示例
- Python logging.Logger.debug用法及代碼示例
- Python logging.debug用法及代碼示例
- Python log10()用法及代碼示例
- Python logging.LogRecord用法及代碼示例
- Python Django login_required用法及代碼示例
- Python locals()用法及代碼示例
- Python list remove()用法及代碼示例
- Python len()用法及代碼示例
- Python numpy string less_equal()用法及代碼示例
- Python calendar leapdays()用法及代碼示例
- Python ldexp()用法及代碼示例
- Python list轉string用法及代碼示例
- Python lzma.LZMACompressor()用法及代碼示例
- Python Functools lru_cache()用法及代碼示例
- Python scipy linalg.pinv2用法及代碼示例
- Python list insert()用法及代碼示例
- Python lists轉XML用法及代碼示例
- Python list pop()用法及代碼示例
- Python linecache.getline()用法及代碼示例
- Python list index()用法及代碼示例
- Python list sort()用法及代碼示例
注:本文由純淨天空篩選整理自djangoproject.com大神的英文原創作品 django.contrib.auth.logout。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。