码迷,mamicode.com
首页 > 编程语言 > 详细

【Python】Django auth 修改密码如何实现?

时间:2016-03-28 11:55:18      阅读:472      评论:0      收藏:0      [点我收藏+]

标签:

使用示例
1.创建用户
>>> from django.contrib.auth.models import User
>>> user = User.objects.create_user(‘john‘, ‘lennon@thebeatles.com‘, ‘johnpassword‘)
# At this point, user is a User object that has already been saved
# to the database. You can continue to change its attributes
# if you want to change other fields.
>>> user.is_staff = True
>>> user.save()
2.修改密码
>>> from django.contrib.auth.models import User
>>> u = User.objects.get(username__exact=‘john‘)
>>> u.set_password(‘new password‘)
>>> u.save()
创建超级管理员
manage.py createsuperuser --username=joe --email=joe@example.com

前端效果:

技术分享

 

参考资料:

Django中的Users权限系统:http://blog.chinaunix.net/uid-25525723-id-331051.html

自己做的修改密码页面,自动弹出不需要的东西 http://mozilla.com.cn/thread-329027-1-1.html

 

【Python】Django auth 修改密码如何实现?

标签:

原文地址:http://www.cnblogs.com/junneyang/p/5328428.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!