首页 > python web
时间:2020-07-08 python web 查看: 1028
使用 python manage.py createsuperuser创建超级用户时只能默认输入:用户名,邮箱,及密码来创建
有的时候我们需要创建的时候指定额外的字段,可以通过下面的方法
使用 python manage.py shell 进入shell脚本
在shell脚本中
from users.models import User
User.objects.create_superuser('用户名','邮箱','密码',mobile=19111111111)
# User.objects.create_superuser()
# 前三个字段是固定的,可以通过关键字参数来指定需要添加的额外参数
补充知识:dajngo创建超级用户 createsuper 报错auth_user' doesn't exist
修改
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'car',
'USER': 'root',
'PASSWORD': 'root',
'HOST': '127.0.0.1',
'PORT': '3306',
'OPTIONS': {
"init_command": "SET foreign_key_checks = 0;",
},
}
}
添加
'OPTIONS': {
"init_command": "SET foreign_key_checks = 0;",
},
然后删除数据库 重新运行一遍
python manage.py createsuperuser
以上这篇django创建超级用户时指定添加其它字段方式就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持python博客。