Django使用Profile扩展User模块方式


Posted in Python onMay 14, 2020

首先创建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/的解决方案

Django使用Profile扩展User模块方式

在project的setting里加一句话就Okay!

LOGIN_REDIRECT_URL = '/index'

以上这篇Django使用Profile扩展User模块方式就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
在Python中marshal对象序列化的相关知识
Jul 01 Python
python模块之re正则表达式详解
Feb 03 Python
Python模拟脉冲星伪信号频率实例代码
Jan 03 Python
Python网络爬虫神器PyQuery的基本使用教程
Feb 03 Python
django限制匿名用户访问及重定向的方法实例
Feb 07 Python
对python中执行DOS命令的3种方法总结
May 12 Python
python操作redis方法总结
Jun 06 Python
Python设计模式之抽象工厂模式原理与用法详解
Jan 15 Python
python+selenium实现QQ邮箱自动发送功能
Jan 23 Python
Pyqt5 实现跳转界面并关闭当前界面的方法
Jun 19 Python
Python3.6 中的pyinstaller安装和使用教程
Mar 16 Python
Pycharm 使用 Pipenv 新建的虚拟环境(图文详解)
Apr 16 Python
python网络编程之五子棋游戏
May 14 #Python
Jupyter notebook如何修改平台字体
May 13 #Python
解决启动django,浏览器显示“服务器拒绝访问”的问题
May 13 #Python
Django 允许局域网中的机器访问你的主机操作
May 13 #Python
Django 用户登陆访问限制实例 @login_required
May 13 #Python
Python selenium模拟手动操作实现无人值守刷积分功能
May 13 #Python
PyQt5 控件字体样式等设置的实现
May 13 #Python
You might like
PHP 字符串分割和比较
2009/10/06 PHP
php操作JSON格式数据的实现代码
2011/12/24 PHP
php 魔术方法详解
2014/11/11 PHP
Thinkphp批量更新数据的方法汇总
2016/06/29 PHP
php语言注释,单行注释和多行注释
2018/01/21 PHP
php输出控制函数和输出函数生成静态页面
2019/06/27 PHP
ThinkPHP类似AOP思想的参数验证的实现方法
2019/12/18 PHP
Nigma vs Liquid BO3 第一场2.13
2021/03/10 DOTA
fix-ie5.js扩展在IE5下不能使用的几个方法
2007/08/20 Javascript
jQuery EasyUI API 中文文档 - TimeSpinner时间微调器
2011/10/23 Javascript
js数组Array sort方法使用深入分析
2013/02/21 Javascript
JS响应鼠标点击实现两个滑块区间拖动效果
2015/10/26 Javascript
详解在 Angular 项目中添加 clean-blog 模板
2017/07/04 Javascript
vue的token刷新处理的方法
2018/07/17 Javascript
JavaScript 对引擎、运行时、调用堆栈的概述理解
2018/10/22 Javascript
通过js随机函数Math.random实现乱序
2020/05/19 Javascript
JavaScript代码实现微博批量取消关注功能
2021/02/05 Javascript
Python中super关键字用法实例分析
2015/05/28 Python
Python 12306抢火车票脚本
2018/02/07 Python
详解Appium+Python之生成html测试报告
2019/01/04 Python
详解Python使用Plotly绘图工具,绘制甘特图
2019/04/02 Python
python生成特定分布数的实例
2019/12/05 Python
Python While循环语句实例演示及原理解析
2020/01/03 Python
wxPython修改文本框颜色过程解析
2020/02/14 Python
Python浮点型(float)运算结果不正确的解决方案
2020/09/22 Python
使用Python Tkinter实现剪刀石头布小游戏功能
2020/10/23 Python
当我正在为表建立索引的时候,SQL Server 会禁止对表的访问吗
2014/04/28 面试题
事业单位接收函
2014/01/10 职场文书
初中同学聚会邀请函
2014/02/03 职场文书
品牌推广策划方案
2014/05/28 职场文书
蛋糕店创业计划书范文
2014/09/21 职场文书
实习班主任自我评价
2015/03/11 职场文书
企业计划生育责任书
2015/05/09 职场文书
家电创业计划书
2019/08/05 职场文书
python区块链持久化和命令行接口实现简版
2022/05/25 Python
Java获取字符串编码格式实现思路
2022/09/23 Java/Android