前提・実現したいこと
チュートリアル通りにQuestionをimport したいのですが、なぜか no object とエラーが出ます。
エラーメッセージ Class "Question" has no ojects member
該当のソースコード
<views.py> from .models import Question def index(request): latest_question_list = Question.objects.order_by('-pub_date')[:5] output = ', '.join([q.question_text for q in latest_question_list]) return HttpResponse(output) ```python
<models.py>
import datetime
from django.utils import timezone
from django.db import models
class Question(models.Model):
question_text = models.CharField(max_length=200)
pub_date = models.DateTimeField('date published')
def str(self):
return self.question_text
def was_published_recently(self):
return self.pub_date >= timezone.now() - datetime.timedelta(days=1)
Mac使用しています。 python_version pyenv shell 3.7.1
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。