NameError使用自定义模型管理器

时间:2016-01-27 01:21:02

标签: django django-models

我正在尝试将自定义模型管理器添加到模型中的子类AbstractBaseUser的类中,我得到:

NameError `NameError: name 'AccountManager' is not defined.

我看过示例代码与我的代码基本相同,我已经阅读了文档,并用谷歌搜索无效。我根本不明白为什么它不起作用。这里的文档(https://docs.djangoproject.com/en/1.9/topics/auth/customizing/)是一个对AbstractBaseUser进行子类化并使用自定义模型管理器的示例,显然它应该可以工作。任何帮助将不胜感激。提前谢谢。

守则:

from __future__ import unicode_literals
from django.db import models
from django.contrib.auth.models import AbstractBaseUser

class Account(AbstractBaseUser):

    email = models.EmailField(unique=True)
    username = models.CharField(max_length=40, unique=True)

    first_name = models.CharField(max_length=40, blank=True)
    last_name = models.CharField(max_length=40, blank=True)

    tagline = models.CharField(max_length=140, blank=True)

    is_admin = models.BooleanField(default=False)

    created_at = models.DateTimeField(auto_now_add=True)
    updated_at = models.DateTimeField(auto_now=True)    

    objects = AccountManager()

    USERNAME_FIELD = 'email'
    REQUIRED_FIELDS = ['username']

    def __unicode__(self):
        return self.email

    def get_full_name(self):
        return ' '.join(self.first_name, self.last_name)

    def get_short_name(self):
        return self.first_name

1 个答案:

答案 0 :(得分:0)

我忘记将AccountManager粘贴回我的代码中。睡眠不足会导致一些愚蠢的错误(和问题)。我很抱歉。感谢Karthikr指出这一点!