選中Dja..."/>
溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Django實(shí)現(xiàn)auth模塊下的登錄注冊(cè)與注銷功能

發(fā)布時(shí)間:2020-10-11 07:06:10 來(lái)源:腳本之家 閱讀:153 作者:s_kangkang_A 欄目:開發(fā)技術(shù)

看了好多登錄注冊(cè)和注銷的教程,很亂,很迷,然后總結(jié)了一下,簡(jiǎn)單的做了一個(gè)登錄,注冊(cè)和注銷的頁(yè)面。

1,首先,使用pycharm創(chuàng)建一個(gè)項(xiàng)目

單擊File —> 選中Django —> 在右側(cè)Location選中所需的路徑,或直接在框里命名

Django實(shí)現(xiàn)auth模塊下的登錄注冊(cè)與注銷功能

 2,現(xiàn)在,你有了一個(gè)Django項(xiàng)目

你需要單擊左下方的Terminal

Django實(shí)現(xiàn)auth模塊下的登錄注冊(cè)與注銷功能

創(chuàng)建一個(gè)app,命令:python  manage.py startapp Myapp(命名不做要求)

創(chuàng)建一個(gè)存放靜態(tài)文件的文件夾:static(默認(rèn)為該命名)

項(xiàng)目如下:

Django實(shí)現(xiàn)auth模塊下的登錄注冊(cè)與注銷功能

3,在Waste下:

settings.py:

INSTALLED_APPS = [
  'django.contrib.admin',
  'django.contrib.auth',
  'django.contrib.contenttypes',
  'django.contrib.sessions',
  'django.contrib.messages',
  'django.contrib.staticfiles',
  # 激活app
  'Myapp'
]
 
# 更改數(shù)據(jù)庫(kù)連接
DATABASES = {
  'default': {
    'ENGINE': 'django.db.backends.mysql',
    'HOST' : 'localhost',
    'PORT' : 3306,
    'NAME' : 'mysql',
    'USER': 'root',
    'PASSWORD' : '123456'
  }
}
# 漢語(yǔ)與時(shí)區(qū)
 
LANGUAGE_CODE = 'zh-hans'
 
TIME_ZONE = 'Asia/Shanghai'
 
# 靜態(tài)文件夾路徑
STATIC_URL = '/static/'
 
STATICFILES_DIRS = [
  os.path.join(BASE_DIR,'static'),
]

   在urls.py下:

from django.contrib import admin
from django.urls import path,include
 
urlpatterns = [
  path('admin/', admin.site.urls),
  #更改url匹配,定向到myApp的urls中,當(dāng)主機(jī)地址后面參數(shù)時(shí),到myApp中找鏈接
  path('',include('Myapp.urls'))
]

 關(guān)閉這倆文件,因?yàn)槲覀兓居貌坏搅恕?/p>

4,在Myapp下:

新建urls.py,項(xiàng)目如下:

Django實(shí)現(xiàn)auth模塊下的登錄注冊(cè)與注銷功能

__init__.py:設(shè)置數(shù)據(jù)庫(kù)連接

import pymysql
pymysql.install_as_MySQLdb()

urls.py:

from django.urls import path
from . import views
 
urlpatterns = [
  #主頁(yè),用來(lái)顯示類別等其他數(shù)據(jù)
  path('',views.index),
  # 登錄
  path('tologin/',views.tologin),
  # 注冊(cè)
  path('register/',views.register),
  # 注銷
  path('lagout/',views.lagout),
]

views.py:

from django.shortcuts import render, redirect
from django.http import HttpResponseRedirect
from django.contrib.auth.models import User
from django.contrib.auth import authenticate,login,logout
from django.contrib.auth.models import AnonymousUser
 
# Create your views here.
# 主頁(yè)
def index(request,):
  username = request.user
  return render(request,'Myapp/index.html',locals())
 
# 登錄
def tologin(request):
  if request.method == 'POST' and request.POST:
    data = request.POST
    username = data.get('username')
    password = data.get('password')
    n = authenticate(username=username,password=password)
    if n:
      # 登陸成功即可獲取當(dāng)前登錄用戶,返回主頁(yè)
      login(request,user=n)
      return redirect('/')
  # 失敗重定向到登錄頁(yè)
  return render(request, 'myApp/login.html')
 
# 注冊(cè)
def register(request):
  if request.method == 'POST' and request.POST:
    data = request.POST
    username = data.get("username")
    password = data.get("password")
    # 校驗(yàn)注冊(cè),名字不可重復(fù)
    u = User.objects.filter(username=username).first()
    if u:
      info = '該用戶名已被注冊(cè)'
      return render(request,'Myapp/ERROR.html',{'info':info})
    else:
      # 注冊(cè)成功,創(chuàng)建用戶
      User.objects.create_user(
        username=username,
        password=password
      )
      # 重定向到登錄頁(yè)面
      return HttpResponseRedirect('/tologin/')
  # 注冊(cè)失敗,重新注冊(cè)
  return render(request,'Myapp/register.html')
 
def lagout(request):
  logout(request)
  return redirect('/')

因?yàn)橛玫氖莂uth組件,所以這個(gè)模型可以不寫

5,回到Terminal

執(zhí)行生成遷移文件:python manager.py makemigrations

生成遷移:python manager.py migrate

6,簡(jiǎn)陋的html

ERROR.html:用來(lái)提示錯(cuò)誤,任何頁(yè)面的錯(cuò)誤,向該頁(yè)面?zhèn)魅脲e(cuò)誤信息info即可

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>ERROR</title>
</head>
<body>
{{ info }}
</body>
</html>


index.html:主頁(yè),歡迎用戶,無(wú)用戶顯示為游客,為什么是游客,不是AnonymousUser,后面講

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>主頁(yè)</title>
</head>
<body>
 
  你好,{{ username }}
  <a href="{{ " rel="external nofollow" rel="external nofollow" rel="external nofollow" lagout/" }}">注銷</a>
  <a href="{{ " rel="external nofollow" rel="external nofollow" rel="external nofollow" tologin/" }}">登錄</a>
  <a href="{{ " rel="external nofollow" rel="external nofollow" rel="external nofollow" register/" }}">注冊(cè)</a>
 
</body>
</html>

login.html :登錄,簡(jiǎn)陋,emmm

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>登錄</title>
</head>
<body>
<form method="post">
    {% csrf_token %}
    <p>
      用戶名:<input type="text" name="username" >
    </p>
    <p>
      密  碼:<input type="password" name="password" >
    </p>
    <p>
      <input type="submit" value="登錄">
      &nbsp;
      <input type="reset" value="取消">
    </p>
  </form>
</body>
</html>

register:注冊(cè):簡(jiǎn)陋,too

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>注冊(cè)</title>
</head>
<body>
<form method="post">
    {% csrf_token %}
    <p>
      用戶名:<input type="text" name="username" >
    </p>
    <p>
      密  碼:<input type="password" name="password" >
    </p>
    <p>
      <input type="submit" value="注冊(cè)">
      &nbsp;
      <input type="reset" value="取消">
    </p>
  </form>
</body>
</html>

然后,一般,我們用auth組件,如果沒(méi)有登錄,它會(huì)這樣顯示:

Django實(shí)現(xiàn)auth模塊下的登錄注冊(cè)與注銷功能

但是,它很突兀,很難受,為什么是英語(yǔ)?什么意思?對(duì)不對(duì),就想改。那就改唄

在我的views.py里的最后一個(gè)import是無(wú)用引用,ctrl加鼠標(biāo)右鍵點(diǎn)擊AnonymousUser,查看AnonymousUser源碼:

Django實(shí)現(xiàn)auth模塊下的登錄注冊(cè)與注銷功能

改成:

Django實(shí)現(xiàn)auth模塊下的登錄注冊(cè)與注銷功能

即可:

Django實(shí)現(xiàn)auth模塊下的登錄注冊(cè)與注銷功能

7,測(cè)試:

運(yùn)行命令:python manager.py runserver,不是點(diǎn)擊三角形哦。

注冊(cè)成功跳轉(zhuǎn)登錄

Django實(shí)現(xiàn)auth模塊下的登錄注冊(cè)與注銷功能Django實(shí)現(xiàn)auth模塊下的登錄注冊(cè)與注銷功能

跳轉(zhuǎn)登錄,登錄后轉(zhuǎn)首頁(yè),且歡迎當(dāng)前用戶

Django實(shí)現(xiàn)auth模塊下的登錄注冊(cè)與注銷功能Django實(shí)現(xiàn)auth模塊下的登錄注冊(cè)與注銷功能

注銷,成功注銷后回首頁(yè),且歡迎游客

Django實(shí)現(xiàn)auth模塊下的登錄注冊(cè)與注銷功能

最后,注冊(cè)已有用戶名報(bào)錯(cuò)

Django實(shí)現(xiàn)auth模塊下的登錄注冊(cè)與注銷功能Django實(shí)現(xiàn)auth模塊下的登錄注冊(cè)與注銷功能

總結(jié)

以上所述是小編給大家介紹的Django實(shí)現(xiàn)auth模塊下的登錄注冊(cè)與注銷功能,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)億速云網(wǎng)站的支持!
如果你覺(jué)得本文對(duì)你有幫助,歡迎轉(zhuǎn)載,煩請(qǐng)注明出處,謝謝!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI