2

我是 Python 新手,尤其是 Django 新手。在尝试潜入主题时。框架,并通过其官方教程运行,我对颈部错误感到有些痛苦,它说:

属性错误:“投票”对象没有属性“was_published_recently”

我在 django shell 中键入下一个(由项目目录中的“python manage.py shell”调用):

>>> from polls.models import Poll, Choice
>>> from django.utils import timezone
>>> p = Poll.objects.get(pk=1)
>>> p.was_published_recently()

我得到下一个 shell 输出:

回溯(最后一次调用):
文件“”,第 1 行,在
AttributeError 中:“轮询”对象没有属性“was_published_recently””

有人可以帮我弄清楚我在这里做错了什么吗?因为我只是不知道什么会导致这样的错误......(已经用谷歌搜索了这个问题,但没有找到可以解决我的情况的答案)。

我使用:
Django 版本 1.5.1
Python 版本 2.7.5

这是我的“民意调查”模型代码:

import datetime
from django.utils import timezone
from django.db import models

class Poll(models.Model):
    question = models.CharField(max_length=200)
    pub_date = models.DateTimeField('date published')

    def __unicode__(self):
        return self.question

    def was_published_recently(self):
        return self.pub_date >= timezone.now() - datetime.timedelta(days=1)


class Choice(models.Model):
    poll = models.ForeignKey(Poll)
    choice_text = models.CharField(max_length=200)
    votes = models.IntegerField(default=0)

    def __unicode__(self):
        return self.choice_text

另外,这是我的“管理员”文件:

from django.contrib import admin
from polls.models import Choice, Poll

class ChoiceInline(admin.TabularInline):
    model = Choice
    extra = 3

class PollAdmin(admin.ModelAdmin):
    fieldsets = [
        (None,               {'fields': ['question']}),
        ('Date information', {'fields': ['pub_date'], 'classes': ['collapse']}),
    ]
    inlines = [ChoiceInline]
    list_display = ('question', 'pub_date', 'was_published_recently')

admin.site.register(Choice)
admin.site.register(Poll, PollAdmin)
4

2 回答 2

2

确保使用 4 个空格作为缩进而不是制表符,制表符会使功能无法识别。

于 2013-08-13T07:08:57.203 回答
0

我认为它只是在说你没有在类中包含任何 was_published_recently 函数。感谢您包含 admin.py 和 polls.py 文件,但我认为它在您的 models.py 文件中,您需要确保几件事。看起来你需要确保

from django.utils import timezone 

def was_published_recently(self):
    return self.pub_date >= timezone.now() - datetime.timedelta(days=1)

包含在您的 models.py 文件中。

于 2014-03-22T19:21:28.417 回答