当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Django CustomUserManager.create_user用法及代码示例


本文介绍django.contrib.auth.models.CustomUserManager.create_user的用法。

声明

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

create_user() 的原型应该接受用户名字段,以及所有必填字段作为参数。例如,如果您的用户模型使用 email 作为用户名字段,并且将 date_of_birth 作为必填字段,则应将 create_user 定义为:

def create_user(self, email, date_of_birth, password=None):
    # create user here
    ...

相关用法


注:本文由纯净天空筛选整理自djangoproject.com大神的英文原创作品 django.contrib.auth.models.CustomUserManager.create_user。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。