python注销代码_django用户注册、登录、注销和用户扩展的示例
用戶部分是一個(gè)網(wǎng)站的基本功能,django對(duì)這部分進(jìn)行了很好的封裝,我們只需要在django的基礎(chǔ)上做些簡(jiǎn)單的修改就可以達(dá)到我們想要的效果
首先我假設(shè)你對(duì)django的session、cookie和數(shù)據(jù)庫(kù)、admin部分都有一定的了解,不了解的可以參考這個(gè)教程:http://djangobook.py3k.cn/2.0/
1、用戶登錄:
首先假設(shè)有這樣的登錄界面:
處理登錄的視圖代碼如下:
def userLogin(request):
curtime=time.strftime("%Y-%m-%d %H:%M:%S",time.localtime());
if request.method=='POST':
print("POST")
username=request.POST.get('name','')
password=request.POST.get('password','')
user= auth.authenticate(username=username,password=password)#a***********
if user and user.is_active:
auth.login(request, user)#b************
return HttpResponseRedirect("/user")
return render_to_response("blog/userlogin.html",RequestContext(request,{'curtime':curtime}))
注:a、這里是用django自己的auth框架驗(yàn)證用戶名和密碼,有人會(huì)說(shuō),這樣太不靈活了,我想用郵箱登錄呢?后面我們會(huì)說(shuō)直接用django.contrib.auth.models.User 模型來(lái)直接操作用戶數(shù)據(jù),這樣就可以做自己想要的驗(yàn)證了。
b、用戶信息被驗(yàn)證無(wú)誤后需要把用戶登錄的信息寫入session中
2、用戶注銷
注銷比較簡(jiǎn)單,只需要在session中刪除對(duì)應(yīng)的user信息就ok了
def userLogout(request):
auth.logout(request)
return HttpResponseRedirect('/user')
3、用戶注冊(cè)
注冊(cè)的界面如下:
用戶名、密碼、郵箱是基本的注冊(cè)信息,這是django自帶的,下面的電話是擴(kuò)展的用戶信息,至于這么擴(kuò)展用戶信息,一會(huì)會(huì)講,先透露下我采用的是profile的擴(kuò)展方式(個(gè)人喜好吧,我覺(jué)得這種方式簡(jiǎn)單明了)
注冊(cè)的視圖view代碼:
def userRegister(request):
curtime=time.strftime("%Y-%m-%d %H:%M:%S",time.localtime());
if request.user.is_authenticated():#a*******************
return HttpResponseRedirect("/user")
try:
if request.method=='POST':
username=request.POST.get('name','')
password1=request.POST.get('password1','')
password2=request.POST.get('password2','')
email=request.POST.get('email','')
phone=request.POST.get('phone','')
errors=[]
registerForm=RegisterForm({'username':username,'password1':password1,'password2':password2,'email':email})#b********
if not registerForm.is_valid():
errors.extend(registerForm.errors.values())
return render_to_response("blog/userregister.html",RequestContext(request,{'curtime':curtime,'username':username,'email':email,'errors':errors}))
if password1!=password2:
errors.append("兩次輸入的密碼不一致!")
return render_to_response("blog/userregister.html",RequestContext(request,{'curtime':curtime,'username':username,'email':email,'errors':errors}))
filterResult=User.objects.filter(username=username)#c************
if len(filterResult)>0:
errors.append("用戶名已存在")
return render_to_response("blog/userregister.html",RequestContext(request,{'curtime':curtime,'username':username,'email':email,'errors':errors}))
user=User()#d************************
user.username=username
user.set_password(password1)
user.email=email
user.save()
#用戶擴(kuò)展信息 profile
profile=UserProfile()#e*************************
profile.user_id=user.id
profile.phone=phone
profile.save()
#登錄前需要先驗(yàn)證
newUser=auth.authenticate(username=username,password=password1)#f***************
if newUser is not None:
auth.login(request, newUser)#g*******************
return HttpResponseRedirect("/user")
except Exception,e:
errors.append(str(e))
return render_to_response("blog/userregister.html",RequestContext(request,{'curtime':curtime,'username':username,'email':email,'errors':errors}))
return render_to_response("blog/userregister.html",RequestContext(request,{'curtime':curtime}))
注:
a、驗(yàn)證用戶是否登錄了,已經(jīng)登錄就沒(méi)必要注冊(cè)了(當(dāng)然這只是練習(xí)使用,實(shí)際生產(chǎn)情況可能不一樣)
b、注冊(cè)表單傳過(guò)來(lái)的數(shù)據(jù)需要一些基本的驗(yàn)證,怎么驗(yàn)證表單數(shù)據(jù)可以參考這個(gè)教程:http://djangobook.py3k.cn/2.0/chapter07/
c、用User模型查找要注冊(cè)的用戶名是否存在,如果用戶已經(jīng)存在就需要提示注冊(cè)的客戶更換用戶名
d、直接利用User模型把通過(guò)驗(yàn)證的用戶數(shù)據(jù)存入數(shù)據(jù)庫(kù),需要注意的是,保存密碼信息時(shí)需要使用set_password方法(因?yàn)檫@里有個(gè)加密的過(guò)程)
e、存儲(chǔ)用戶的擴(kuò)展信息(這里是用戶的電話號(hào)碼),這里用到自定義的用戶擴(kuò)展模型UserProfile,具體怎么擴(kuò)展用戶后面會(huì)講
f、用戶登錄前需要先進(jìn)行驗(yàn)證,要不然會(huì)出錯(cuò)
g、用戶登錄
4、用戶擴(kuò)展
網(wǎng)上關(guān)于django的用戶擴(kuò)展方式有好幾種,個(gè)人比較傾向于Profile的方式,主要是這種方式簡(jiǎn)單清楚,擴(kuò)展步驟如下:
A、在你App的models中新建一個(gè)UserProfile模型
from django.contrib.auth.models import User
class UserProfile(models.Model):
user=models.OneToOneField(User,unique=True,verbose_name=('用戶'))#a******
phone=models.CharField(max_length=20)#b******
注:a、UserProfile其實(shí)就是一個(gè)普通的model,然后通過(guò)這一句與django的User模型建立聯(lián)系
b、擴(kuò)展的用戶信息
B、python manage.py syncdb 在數(shù)據(jù)庫(kù)內(nèi)創(chuàng)建userprofile的表
C、如何調(diào)用user的擴(kuò)展信息呢?很簡(jiǎn)單,先得到user,然后通過(guò)user提供的get_profile()來(lái)得到profile對(duì)象,比如
user.get_profile().phone
D、如何更新和存儲(chǔ)user的profile信息呢,其實(shí)在之前的用戶注冊(cè)部分我們已經(jīng)使用了這樣的功能,userprofile其實(shí)也是一個(gè)model,我們只要通過(guò)user模型得到user的id,就可以通過(guò)UserProfile模型來(lái)操作對(duì)應(yīng)的profile信息:
user=User()
user.username=username
user.set_password(password1)
user.email=email
user.save()
#用戶擴(kuò)展信息 profile
profile=UserProfile()
profile.user_id=user.id
profile.phone=phone
profile.save()
E、我們能在程序中操作用戶擴(kuò)展信息了,那我想在admin后臺(tái)中編輯擴(kuò)展信息要怎么做呢:
很簡(jiǎn)單,只要在你的APP的admin.py中添加下面的語(yǔ)句就行了
class UserProfileInline(admin.StackedInline):
model=UserProfile
fk_name='user'
max_num=1
class UserProfileAdmin(UserAdmin):
inlines = [UserProfileInline, ]
admin.site.unregister(User)
admin.site.register(User,UserProfileAdmin)
這是我學(xué)習(xí)django時(shí)的一些經(jīng)驗(yàn),也許不全對(duì),僅供參考,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持我們。
本文標(biāo)題: django用戶注冊(cè)、登錄、注銷和用戶擴(kuò)展的示例
本文地址: http://www.cppcns.com/jiaoben/python/222934.html
總結(jié)
以上是生活随笔為你收集整理的python注销代码_django用户注册、登录、注销和用户扩展的示例的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: python 魔法方法常用_Python
- 下一篇: jQuery(UI)常用插件