假設我有兩個模式是這樣的:獲取對象的外鍵父 - Django的
class Article(models.Model):
article_title = models.CharField(max_length=100)
class EventRecord(models.Model):
article = models.ForeignKey(Article)
在視圖中,我選擇了一定EventRecord並要顯示的文章是涉及到還有的標題。以下不工作:
def classify(request, pk):
event = get_object_or_404(EventRecord, pk=pk)
article_id = event.article
article = get_object_or_404(Article, pk=article_id)
如何使這項工作? 任何幫助是真的讚賞!
真棒,謝謝! :) – LukasKawerau 2013-04-03 21:48:45
'if not event.article'不是必須的,因爲'EventRecord'中的'article'字段不能爲空,因此'article'將始終存在。 – miki725 2013-04-03 21:57:08