-
create_superuser()
的原型应该接受用户名字段,以及所有必填字段作为参数。例如,如果您的用户模型使用email
作为用户名字段,并且将date_of_birth
作为必填字段,则应将create_superuser
定义为:def create_superuser(self, email, date_of_birth, password=None): # create superuser here ...
本文介绍django.contrib.auth.models.CustomUserManager.create_superuser
的用法。
声明
create_superuser(username_field, password=None, **other_fields)
相关用法
- Python Django CustomUserManager.create_user用法及代码示例
- Python Sympy Curve.translate()用法及代码示例
- Python Django CursorWrapper.callproc用法及代码示例
- Python Django CurrentSiteManager用法及代码示例
- Python Tableau CSVRequestOptions用法及代码示例
- Python Django ContentTypeManager用法及代码示例
- Python Calendar itermonthdays2()用法及代码示例
- Python Condition release()用法及代码示例
- Python Collections.UserString用法及代码示例
- Python Calendar monthdatescalendar()用法及代码示例
- Python Condition notify()用法及代码示例
- Python CSV转JSON用法及代码示例
- Python Django ContextMixin.get_context_data用法及代码示例
- Python Condition wait()用法及代码示例
- Python Django Coalesce用法及代码示例
- Python Calendar itermonthdates()用法及代码示例
- Python Calendar iterweekdays()用法及代码示例
- Python Django Client用法及代码示例
- Python Django Cot用法及代码示例
- Python Calendar monthdayscalendar()用法及代码示例
- Python Django Client.get用法及代码示例
- Python Calendar itermonthdays3()用法及代码示例
- Python Django Ceil用法及代码示例
- Python Collections.UserDict用法及代码示例
- Python Celsius转Fahrenheit用法及代码示例
注:本文由纯净天空筛选整理自djangoproject.com大神的英文原创作品 django.contrib.auth.models.CustomUserManager.create_superuser。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。