-
说明用户模型上用作唯一标识符的字段名称的字符串。这通常是某种用户名,但也可以是电子邮件地址或任何其他唯一标识符。字段
must
是唯一的(即,在其定义中设置了unique=True
),除非您使用可以支持非唯一用户名的自定义身份验证后端。在以下示例中,字段
identifier
用作标识字段:class MyUser(AbstractBaseUser): identifier = models.CharField(max_length=40, unique=True) ... USERNAME_FIELD = 'identifier'
本文介绍django.contrib.auth.models.CustomUser.USERNAME_FIELD
的用法。
声明
USERNAME_FIELD
相关用法
- Python Django UUIDField用法及代码示例
- Python Django UniqueConstraint.deferrable用法及代码示例
- Python Django UniqueConstraint.condition用法及代码示例
- Python Django Union用法及代码示例
- Python Django UniqueConstraint.expressions用法及代码示例
- Python MongoDB Update_one()用法及代码示例
- Python Django UniqueConstraint.opclasses用法及代码示例
- Python Unicode转ASCII用法及代码示例
- Python Django UserPassesTestMixin.test_func用法及代码示例
- Python Tableau UserItem用法及代码示例
- Python PIL UnsahrpMask()用法及代码示例
- Python Django UniqueConstraint.include用法及代码示例
- Python Django Upper用法及代码示例
- Python Union()用法及代码示例
- Python Django UpdateView.object用法及代码示例
- Python cudf.core.column.string.StringMethods.is_vowel用法及代码示例
- Python torch.distributed.rpc.rpc_async用法及代码示例
- Python torch.nn.InstanceNorm3d用法及代码示例
- Python sklearn.cluster.MiniBatchKMeans用法及代码示例
- Python pandas.arrays.IntervalArray.is_empty用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代码示例
- Python numpy.less()用法及代码示例
- Python Matplotlib.figure.Figure.add_gridspec()用法及代码示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代码示例
- Python Django File.save用法及代码示例
注:本文由纯净天空筛选整理自djangoproject.com大神的英文原创作品 django.contrib.auth.models.CustomUser.USERNAME_FIELD。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。