djangoのチュートリアルをやっています
https://docs.djangoproject.com/ja/3.0/intro/tutorial02/
コードの内容について不明点があるので教えてください
下記のviews.pyの
Question.objects.get(pk=question_id)
の部分についてですが、
これは、model.pyがmodelsをimportして継承しているため、
getメソッドを利用できている。
という認識でよいでしょうか?
あと、あまり調べても確信のあるサイトがみつからなかったのですが、
答えになるようなページがあれば教えていただけますか。
よろしくお願いします。
##views.py
def detail(request, question_id): try: question = Question.objects.get(pk=question_id) except Question.DoesNotExist: raise Http404("Question does not exist") return render(request, 'polls/detail.html', {'question:question'})
##models.py
`
import datetime
from django.db import models
from django.utils import timezone
class Question(models.Model):
question_text = models.CharField(max_length=200)
pub_date = models.DateTimeField('date published')
def str(self):
return self.question_text
class Choice(models.Model):
question = models.ForeignKey(Question, on_delete=models.CASCADE)
choice_text = models.CharField(max_length=200)
votes = models.IntegerField(default=0)
def str(self):
return self.choice_text
`
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/29 07:52