gpt4 book ai didi

django - 为什么 Django 给我 : 'first_name' is an invalid keyword argument for this function?

转载 作者:行者123 更新时间:2023-12-04 04:55:31 25 4
gpt4 key购买 nike

我正在尝试创建一个自定义用户配置文件,并且只是稍微修改了示例

from django.conf import settings
from django.db import models
from django.contrib.auth.models import BaseUserManager, AbstractBaseUser

class MyUserManager(BaseUserManager):
def create_user(self, email, password=None, first_name=None, last_name=None):

if not email:
raise ValueError('Users must have an email address')

user = self.model(
email=MyUserManager.normalize_email(email),
first_name=first_name,
last_name=last_name,
#date_of_birth=date_of_birth,
)

user.set_password(password)
user.save(using=self._db)
return user

def create_superuser(self, email, password, first_name=None, last_name=None):

user = self.create_user(email,
password=password,
first_name=first_name,
last_name=last_name,
#date_of_birth=date_of_birth
)
user.is_admin = True
user.save(using=self._db)
return user

class MyUser(AbstractBaseUser):
email = models.EmailField(
verbose_name='email address',
max_length=255,
unique=True,
db_index=True,
)
first_name=models.CharField(max_length = 30),
last_name=models.CharField(max_length = 30),
#date_of_birth = models.DateField()
is_active = models.BooleanField(default=True)
is_admin = models.BooleanField(default=False)

objects = MyUserManager()

USERNAME_FIELD = 'email'
REQUIRED_FIELDS = []

def get_full_name(self):
# The user is identified by their email address
return self.email

def get_short_name(self):
# The user is identified by their email address
return self.email

def __unicode__(self):
return self.email

def has_perm(self, perm, obj=None):
"Does the user have a specific permission?"
# Simplest possible answer: Yes, always
return True

def has_module_perms(self, app_label):
"Does the user have permissions to view the app `app_label`?"
# Simplest possible answer: Yes, always
return True

@property
def is_staff(self):
"Is the user a member of staff?"
# Simplest possible answer: All admins are staff
return self.is_admin

当我尝试运行 syncdb 时,出现以下错误:
You just installed Django's auth system, which means you don't have any superusers defined.
Would you like to create one now? (yes/no): yes
Email address: uou@pce.com
Password:
Password (again):
TypeError: 'first_name' is an invalid keyword argument for this function

由于错误消息的性质有限,我一直在努力调试它。我觉得我犯了一个简单的错误我做错了什么?

最佳答案

您正在尝试将 None (Null) 值设置为 first_name 并且此属性似乎不允许这样做。

试试这个改变:

class MyUserManager(BaseUserManager):
def create_user(self, email, password=None, first_name='', last_name=''):

在模型中:
first_name=models.CharField(max_length = 30, blank = True)

关于django - 为什么 Django 给我 : 'first_name' is an invalid keyword argument for this function?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16807420/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com