FieldError:无法解析' publish_year'进入田野

时间:2017-03-15 16:36:48

标签: python django

我是Django的新手,我目前正在使用django作为示例我收到此错误FieldError:无法解析' publish_year'进入现场

以下是我的模型:

# Abstract Model

class Post(models.Model):
    STATUS_CHOICES = (('draft', 'Draft'),('published', 'Published'),)    
    title = models.CharField(max_length=250)
    slug = models.SlugField(max_length=250, unique_for_date='publish')
    author = models.ForeignKey(User, related_name='blog_posts')
    body = models.TextField()
    publish = models.DateTimeField(default=timezone.now)
    created = models.DateTimeField(auto_now_add=True)
    updated = models.DateTimeField(auto_now=True)
    status = models.CharField(max_length=10,
                                choices= STATUS_CHOICES,
                                default='draft')


    class PublishedManager(models.Manager):
        def get_queryset(self):
            return super(PublishedManager, self).get_queryset()\
            .filter(status='published')

    objects = models.Manager()
    published = PublishedManager()

    class Meta:
        ordering = ('-publish',)

    def get_absolute_url(self):
        return reverse('post_detail',
                            args=[self.publish.year,
                                self.publish.strftime('%m'),
                                self.publish.strftime('%d'),
                                self.slug])

     def __str__(self):
        return self.title

这是我的观点,我尝试过编辑,但我认为问题不在于我的观点

def post_list(request):
    posts = Post.objects.all()
    return render(request, 'list.html',
                            {'posts':posts})

def post_detail(request, year, month, day, post,):
    post = get_object_or_404(Post, slug=post,
                                    status='published',
                                    publish_year=year,
                                    publish_month=month,
                                    publish_day=day)
    return render(request, 'detail.html',
                            {'post':post})
    enter code here
    enter code here

当我尝试访问帖子的详细信息时,我收到以下错误消息

FieldError at /2017/03/15/help/
Cannot resolve keyword 'publish_year' into field. Choices are: author, author_id, body, created, id, publish, slug, status, title, updated
    Request Method: GET
    Request URL:    http://127.0.0.1:8000/2017/03/15/help/
    Django Version: 1.10.6
    Exception Type: FieldError
    Exception Value:    
    Cannot resolve keyword 'publish_year' into field. Choices are: author, author_id, body, created, id, publish, slug, status, title, updated
    Exception Location: C:\Users\Harsley\AppData\Local\Programs\Python\Python36-32\lib\site-packages\django\db\models\sql\query.py in names_to_path, line 1327
    Python Executable:  C:\Users\Harsley\AppData\Local\Programs\Python\Python36-32\python.exe
    Python Version: 3.6.0
    Python Path:    
    ['C:\\Users\\Harsley\\blog',
     'C:\\Users\\Harsley\\AppData\\Local\\Programs\\Python\\Python36-32\\python36.zip',
     'C:\\Users\\Harsley\\AppData\\Local\\Programs\\Python\\Python36-32\\DLLs',
     'C:\\Users\\Harsley\\AppData\\Local\\Programs\\Python\\Python36-32\\lib',
     'C:\\Users\\Harsley\\AppData\\Local\\Programs\\Python\\Python36-32',
     'C:\\Users\\Harsley\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages']
    Server time:    Wed, 15 Mar 2017 15:31:16 +0000

2 个答案:

答案 0 :(得分:3)

您应该使用下划线for lookups that span relations,例如publish__year

post = get_object_or_404(
    Post, 
    slug=post,
    status='published',
    publish__year=year,
    publish__month=month,
    publish__day=day,
)

答案 1 :(得分:0)

使用双下划线代替单下划线。

publish__year 而不是 publish_year。 (使用“_”两次)