def index(request):
latest_question_list = Question.objects.all().order_by('-pub_date')[:5]
template = loader.get_template('polls/index.html')
context = {'latest_question_list':latest_question_list}
return HttpResponse(template.render(context, request))
该函数的第一行在出现错误Question.objects.all()
:
E1101:类“问题”没有对象“成员”
我正在阅读Django文档教程,并且它们具有相同的代码并正在运行。
我尝试调用实例。
Question = new Question()
and using MyModel.objects.all()
我的models.py
课程代码也是这个...
class Question(models.Model):
question_text = models.CharField(max_length = 200)
pub_date = models.DateTimeField('date published')
def was_published_recently(self):
return self.pub_date >= timezone.now() - datetime.timedelta(days=1)
def __str__(self):
return self.question_text
无济于事,我仍然有此错误。
我已经读过有关pylint的文章,并进行了...
pylint --load-plugins pylint_django
这没有帮助,即使github自述文件说...
防止有关Django生成的属性(例如Model.objects或Views.request)的警告。
我在我的virtualenv中运行了命令,但是什么也没有。
因此,任何帮助都会很棒。
pylint --generated-members=objects