Detailviewで、ForeiginkeyのFieldを表示することができず、ハマっております。
○試したこと ModelでURLを参照させる
※こちらのサイトを参照にしました-->
https://stackoverflow.com/questions/65151996/reference-foreignkey-in-django-detailview
https://www.fixes.pub/program/181253.html
python
1# model.py 2class Speaker(models.Model): 3 name = models.CharField(max_length=64) 4 5 def get_all_statements(self): 6 return Statements.objects.filter(name=self.pk) 7 8class Statements(models.Model): 9 name = models.ForeignKey(Speaker, on_delete=models.PROTECT) 10 dialog = models.TextField() <--表示したいField 11 created_at = models.DateTimeField(auto_now_add=True) 12 updated_at = models.DateTimeField(auto_now=True) 13 14 def __str__(self): 15 return str(self.name)
python
1# views.py 2class DetailView(generic.DetailView): 3 model = Speaker
python
1# Template 2<th>Dialog</th><th>Date</th><th>Length</th> 3</tr> 4{% for statement in speaker.statements.all %} 5<tr> 6<td>{{ statement.dialog }}</td> 7</tr> 8{% endfor %}
○結果
Webページに、dialogフィールドの値は表示されない。
○考えたこと
Templateの「speaker.statements.all」の書き方が悪い
(「statements.all」でもダメ)
そもそもの理解が間違っている可能性もありますが、ご教示いただけると幸いに存じます。
追記: 下記のページで、Foreignkeyで結ばれたモデルのフィールドの値を引っ張る方法が分かりました。
https://docs.djangoproject.com/en/3.2/topics/class-based-views/generic-display/
コンテキストの追加
def get_context_data(self, **kwargs):
# Call the base implementation first to get a context
context = super().get_context_data(**kwargs)
# Add in a QuerySet of all the books
context['book_list'] = Book.objects.all()
return context
あとは、フィルターの仕方(Detailのpkに該当する値のみでリストを作る方法)を調べ中です。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。