- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我按照文档的建议,通过对 AbstractBaseUser 进行子类化来创建自己的用户模型。这里的目标是使用一个名为 mob_phone 的新字段作为注册和登录的识别字段。
它很有魅力 - 对于第一个用户。它将用户名字段设置为空 - 空白。但是当我注册第二个用户时,我收到“唯一约束失败:user_account_customuser.username”。
我基本上想完全取消用户名字段。我怎样才能做到这一点?
我基本上需要找到一种方法使用户名字段不唯一或完全删除它。
模型.py
from django.contrib.auth.models import AbstractUser, BaseUserManager
class MyUserManager(BaseUserManager):
def create_user(self, mob_phone, email, password=None):
"""
Creates and saves a User with the given mobile number and password.
"""
if not mob_phone:
raise ValueError('Users must mobile phone number')
user = self.model(
mob_phone=mob_phone,
email=email
)
user.set_password(password)
user.save(using=self._db)
return user
def create_superuser(self, mob_phone, email, password):
"""
Creates and saves a superuser with the given email, date of
birth and password.
"""
user = self.create_user(
mob_phone=mob_phone,
email=email,
password=password
)
user.is_admin = True
user.save(using=self._db)
return user
class CustomUser(AbstractUser):
mob_phone = models.CharField(blank=False, max_length=10, unique=True)
is_admin = models.BooleanField(default=False)
objects = MyUserManager()
# override username field as indentifier field
USERNAME_FIELD = 'mob_phone'
EMAIL_FIELD = 'email'
def get_full_name(self):
return self.mob_phone
def get_short_name(self):
return self.mob_phone
def __str__(self): # __unicode__ on Python 2
return self.mob_phone
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
堆栈跟踪:
Traceback (most recent call last):File "manage.py", line 22, in execute_from_command_line(sys.argv)File "/home/dean/.local/lib/python3.5/site-packages/django/core/management/init.py", line 363, in execute_from_command_lineutility.execute()File "/home/dean/.local/lib/python3.5/site-packages/django/core/management/init.py", line 355, in executeself.fetch_command(subcommand).run_from_argv(self.argv)File "/home/dean/.local/lib/python3.5/site-packages/django/core/management/base.py", line 283, in run_from_argvself.execute(*args, **cmd_options)File "/home/dean/.local/lib/python3.5/site-packages/django/contrib/auth/management/commands/createsuperuser.py", line 63, in executereturn super(Command, self).execute(*args, **options)File "/home/dean/.local/lib/python3.5/site-packages/django/core/management/base.py", line 330, in executeoutput = self.handle(*args, **options)File "/home/dean/.local/lib/python3.5/site-packages/django/contrib/auth/management/commands/createsuperuser.py", line 183, in handleself.UserModel._default_manager.db_manager(database).create_superuser(**user_data)File "/home/dean/Development/UrbanFox/UrbanFox/user_account/models.py", line 43, in create_superuserpassword=passwordFile "/home/dean/Development/UrbanFox/UrbanFox/user_account/models.py", line 32, in create_useruser.save(using=self._db)File "/home/dean/.local/lib/python3.5/site-packages/django/contrib/auth/base_user.py", line 80, in savesuper(AbstractBaseUser, self).save(*args, **kwargs)File "/home/dean/.local/lib/python3.5/site-packages/django/db/models/base.py", line 807, in saveforce_update=force_update, update_fields=update_fields)File "/home/dean/.local/lib/python3.5/site-packages/django/db/models/base.py", line 837, in save_baseupdated = self._save_table(raw, cls, force_insert, force_update, using, update_fields)File "/home/dean/.local/lib/python3.5/site-packages/django/db/models/base.py", line 923, in _save_tableresult = self._do_insert(cls._base_manager, using, fields, update_pk, raw)File "/home/dean/.local/lib/python3.5/site-packages/django/db/models/base.py", line 962, in _do_insertusing=using, raw=raw)File "/home/dean/.local/lib/python3.5/site-packages/django/db/models/manager.py", line 85, in manager_methodreturn getattr(self.get_queryset(), name)(*args, **kwargs)File "/home/dean/.local/lib/python3.5/site-packages/django/db/models/query.py", line 1076, in _insertreturn query.get_compiler(using=using).execute_sql(return_id)File "/home/dean/.local/lib/python3.5/site-packages/django/db/models/sql/compiler.py", line 1107, in execute_sqlcursor.execute(sql, params)File "/home/dean/.local/lib/python3.5/site-packages/django/db/backends/utils.py", line 80, in executereturn super(CursorDebugWrapper, self).execute(sql, params)File "/home/dean/.local/lib/python3.5/site-packages/django/db/backends/utils.py", line 65, in executereturn self.cursor.execute(sql, params)File "/home/dean/.local/lib/python3.5/site-packages/django/db/utils.py", line 94, in exitsix.reraise(dj_exc_type, dj_exc_value, traceback)File "/home/dean/.local/lib/python3.5/site-packages/django/utils/six.py", line 685, in reraiseraise value.with_traceback(tb)File "/home/dean/.local/lib/python3.5/site-packages/django/db/backends/utils.py", line 65, in executereturn self.cursor.execute(sql, params)File "/home/dean/.local/lib/python3.5/site-packages/django/db/backends/sqlite3/base.py", line 328, in executereturn Database.Cursor.execute(self, query, params)django.db.utils.IntegrityError: UNIQUE constraint failed: user_account_customuser.username
最佳答案
好吧,我是个白痴。发布后几秒钟,我想到了明显的解决方案:
username = models.CharField(max_length=40, unique=False, default='')
关于python - Django 自定义用户 - 不使用用户名 - 用户名唯一约束失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45619217/
我可以添加一个检查约束来确保所有值都是唯一的,但允许默认值重复吗? 最佳答案 您可以使用基于函数的索引 (FBI) 来实现此目的: create unique index idx on my_tabl
嗨,我在让我的约束在grails项目中工作时遇到了一些麻烦。我试图确保Site_ID的字段不留为空白,但仍接受空白输入。另外,我尝试设置字段显示的顺序,但即使尝试时也无法反射(reflect)在页面上
我似乎做错了,我正在尝试将一个字段修改为外键,并使用级联删除...我做错了什么? ALTER TABLE my_table ADD CONSTRAINT $4 FOREIGN KEY my_field
阅读目录 1、约束的基本概念 2、约束的案例实践 3、外键约束介绍 4、外键约束展示 5、删除
SQLite 约束 约束是在表的数据列上强制执行的规则。这些是用来限制可以插入到表中的数据类型。这确保了数据库中数据的准确性和可靠性。 约束可以是列级或表级。列级约束仅适用于列,表级约束被应用到整
我在 SerenityOS project 中偶然发现了这段代码: template void dbgln(CheckedFormatString&& fmtstr, const Parameters
我有表 tariffs,有两列:(tariff_id, reception) 我有表 users,有两列:(user_id, reception) 我的表 users_tariffs 有两列:(use
在 Derby 服务器中,如何使用模式的系统表中的信息来创建选择语句以检索每个表的约束名称? 最佳答案 相关手册是Derby Reference Manual .有许多可用版本:10.13 是 201
我正在使用 z3py 进行编码。请参阅以下示例。 from z3 import * x = Int('x') y = Int('y') s = Solver() s.add(x+y>3) if s.c
非常快速和简单的问题。我正在运行一个脚本来导入数据并声明了一个临时表并将检查约束应用于该表。显然,如果脚本运行不止一次,我会检查临时表是否已经存在,如果存在,我会删除并重新创建临时表。这也会删除并重新
我有一个浮点变量 x在一个线性程序中,它应该是 0或两个常量之间 CONSTANT_A和 CONSTANT_B : LP.addConstraint(x == 0 OR CONSTANT_A <= x
我在使用grails的spring-data-neo4j获得唯一约束时遇到了一些麻烦。 我怀疑这是因为我没有正确连接它,但是存储库正在扫描和连接,并且CRUD正在工作,所以我不确定我做错了什么。 我正
这个问题在这里已经有了答案: Is there a constraint that restricts my generic method to numeric types? (24 个回答) 7年前
我有一个浮点变量 x在一个线性程序中,它应该是 0或两个常量之间 CONSTANT_A和 CONSTANT_B : LP.addConstraint(x == 0 OR CONSTANT_A <= x
在iOS的 ScrollView 中将图像和带有动态文本(动态高度)的标签居中的最佳方法是什么? 我必须添加哪些约束?我真的无法弄清楚它是如何工作的,也许我无法处理它,因为我是一名 Android 开
考虑以下代码: class Foo f class Bar b newtype D d = D call :: Proxy c -> (forall a . c a => a -> Bool) ->
我有一个类型类,它强加了 KnownNat约束: class KnownNat (Card a) => HasFin a where type Card a :: Nat ... 而且,我有几
我知道REST原则上与HTTP无关。 HTTP是协议,REST是用于通过Web传输hypermedia的体系结构样式。 REST可以使用诸如HTTP,FTP等的任何应用程序层协议。关于REST的讨论很
我有这样的情况,我必须在数据库中存储复杂的数据编号。类似于 21/2011,其中 21 是文件编号,但 2011 是文件年份。所以我需要一些约束来处理唯一性,因为有编号为 21/2010 和 21/2
我有一个 MySql (InnoDb) 表,表示对许多类型的对象之一所做的评论。因为我正在使用 Concrete Table Inheritance ,对于下面显示的每种类型的对象(商店、类别、项目)
我是一名优秀的程序员,十分优秀!