91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Django框架用戶注銷功能實現方法分析

發布時間:2020-10-24 23:24:05 來源:腳本之家 閱讀:191 作者:學習筆記666 欄目:開發技術

本文實例講述了Django框架用戶注銷功能實現方法。分享給大家供大家參考,具體如下:

HttpResponse()里有個delete_cookie()方法專門用來刪除cookie

我們到此來完整的實現一下:訪問首頁如果沒有登錄,就跳轉到登錄頁面,登錄成功之后再跳轉回來的過程。

3個方法,index、login、logout

# coding:utf-8
from django.shortcuts import render,render_to_response
# Create your views here.
from django.http import HttpResponse
from UserClass import UserLogin
def index(request):
  msg = {'username':'guest'}
  if request.COOKIES.get('userlogin_username') != None :
    msg['username'] = request.COOKIES.get('userlogin_username')
  myReponse = render_to_response("index.html",msg)
  return myReponse
def login(request):
  msg = {'result': ''}
  if request.method == 'POST':
    getUserName = request.POST.get('username')
    getPwd = request.POST.get('pwd')
    # 實例化UserLogin類
    loginObj = UserLogin(getUserName,getPwd)
    if loginObj.isLogin():
      myReponse = HttpResponse("<script>self.location='/index'</script>")
      myReponse.set_cookie('userlogin_username',getUserName,3600)
      return myReponse
    else:
      msg['result'] = '用戶名或密碼錯誤'
  myReponse = render_to_response("login.html", msg)
  return myReponse
# 用戶注銷
def logout(request):
  r = HttpResponse()
  r.delete_cookie('userlogin_username')
  r.write("<script>self.location='/index'</script>")
  return r

首頁模板index.html

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>首頁</title>
</head>
<body>
  <h3>這是首頁,當前登錄用戶是:{{ username }}</h3>
  {% ifequal username "guest" %}
  <p><a href="/login" rel="external nofollow" >登錄</a></p>
  {% else %}
  <p><a href="/logout" rel="external nofollow" >安裝退出</a></p>
  {% endifequal %}
</body>
</html>

其中用到了Django的模板語法

希望本文所述對大家基于Django框架的Python程序設計有所幫助。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

苏州市| 新宁县| 九龙坡区| 罗城| 普兰店市| 凉城县| 慈溪市| 巴林右旗| 江华| 沁阳市| 汉阴县| 米林县| 天等县| 汶上县| 河北省| 新干县| 布尔津县| 安丘市| 左云县| 辰溪县| 准格尔旗| 农安县| 谢通门县| 阿巴嘎旗| 哈尔滨市| 南漳县| 瑞丽市| 巴林右旗| 山西省| 托克托县| 南通市| 博野县| 周至县| 金堂县| 阜南县| 兴业县| 临朐县| 大余县| 红桥区| 陇川县| 凤城市|