python
data_error
ai_generated
true
完整性错误:auth_user.username 的非空约束失败
django.db.utils.IntegrityError: NOT NULL constraint failed: auth_user.username
ID: python/django-auth-user-creation-error
80%修复率
88%置信度
0证据数
2025-07-01首次发现
版本兼容性
| 版本 | 状态 | 引入 | 弃用 | 备注 |
|---|---|---|---|---|
| 3.2 | active | — | — | — |
| 4.0 | active | — | — | — |
| 5.0 | active | — | — | — |
根因分析
Django 用户模型要求用户名不能为空
English
创建用户时未提供用户名
解决方案
-
100% 成功率 在创建用户时提供用户名
User.objects.create_user(username='john', email='[email protected]', password='pass')
-
95% 成功率 使用 create() 方法并确保提供所有必填字段
user = User(username='john', email='[email protected]'); user.set_password('pass'); user.save()
无效尝试
常见但无效的做法:
-
设置 username 为 NULL
100% 失败
数据库约束不允许 NULL
-
使用 email 作为用户名
50% 失败
需要自定义用户模型