當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Django CustomUserManager.create_superuser用法及代碼示例


本文介紹django.contrib.auth.models.CustomUserManager.create_superuser的用法。

聲明

create_superuser(username_field, password=None, **other_fields)

create_superuser() 的原型應該接受用戶名字段,以及所有必填字段作為參數。例如,如果您的用戶模型使用 email 作為用戶名字段,並且將 date_of_birth 作為必填字段,則應將 create_superuser 定義為:

def create_superuser(self, email, date_of_birth, password=None):
    # create superuser here
    ...

相關用法


注:本文由純淨天空篩選整理自djangoproject.com大神的英文原創作品 django.contrib.auth.models.CustomUserManager.create_superuser。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。