神剑山庄资源网 Design By www.hcban.com
首先创建Profile应用
python manage.py startapp profiles
profiles/models.py
# -*- coding: utf-8 -*- from django.db import models from django.contrib.auth.models import User from django.db.models.signals import post_save class UserProfile(models.Model): user = models.OneToOneField(User) nickname = models.CharField(max_length=16, default='', blank=True) sex = models.IntegerField(default=0) phone = models.CharField(max_length=16, default='', blank=True) def __str__(self): return self.nickname def __unicode__(self): return self.nickname def create_user_profile(sender, instance, created, **kwargs): if created: profile = UserProfile() profile.user = instance profile.save() post_save.connect(create_user_profile, sender=User)
profiles/admin.py
# -*- coding: utf-8 -*- from django.contrib import admin from django.contrib.auth.models import User from django.contrib.auth.admin import UserAdmin from .models import UserProfile class ProfileInline(admin.StackedInline): model = UserProfile max_num = 1 can_delete = False class UserProfileAdmin(UserAdmin): inlines = [ProfileInline, ] admin.site.unregister(User) admin.site.register(User, UserProfileAdmin)
settings.py
添加
AUTH_PROFILE_MODULE = 'profiles.UserProfile'
测试
$ python manage.py syncdb $ python manage.py shell > from django.contrib.auth.models import User > user = User() > user.username='testuser' > user.save() > User.objects.all()[0].userprofile
补充知识:django中登录到accounts/profile/的解决方案
在project的setting里加一句话就Okay!
LOGIN_REDIRECT_URL = '/index'
以上这篇Django使用Profile扩展User模块方式就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
神剑山庄资源网 Design By www.hcban.com
神剑山庄资源网
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
神剑山庄资源网 Design By www.hcban.com
暂无Django使用Profile扩展User模块方式的评论...
更新日志
2024年11月18日
2024年11月18日
- 【雨果唱片】中国管弦乐《鹿回头》WAV
- APM亚流新世代《一起冒险》[FLAC/分轨][106.77MB]
- 崔健《飞狗》律冻文化[WAV+CUE][1.1G]
- 罗志祥《舞状元 (Explicit)》[320K/MP3][66.77MB]
- 尤雅.1997-幽雅精粹2CD【南方】【WAV+CUE】
- 张惠妹.2007-STAR(引进版)【EMI百代】【WAV+CUE】
- 群星.2008-LOVE情歌集VOL.8【正东】【WAV+CUE】
- 罗志祥《舞状元 (Explicit)》[FLAC/分轨][360.76MB]
- Tank《我不伟大,至少我能改变我。》[320K/MP3][160.41MB]
- Tank《我不伟大,至少我能改变我。》[FLAC/分轨][236.89MB]
- CD圣经推荐-夏韶声《谙2》SACD-ISO
- 钟镇涛-《百分百钟镇涛》首批限量版SACD-ISO
- 群星《继续微笑致敬许冠杰》[低速原抓WAV+CUE]
- 潘秀琼.2003-国语难忘金曲珍藏集【皇星全音】【WAV+CUE】
- 林东松.1997-2039玫瑰事件【宝丽金】【WAV+CUE】