5

描述:

我想知道如何在模板代码中访问 ForeignKey 的字段。

给定示例 models.py 代码:

class Publisher(models.Model):
    name = models.CharField(max_length=30)
    address = models.CharField(max_length=50)


class Book(models.Model):
    title = models.CharField(max_length=100)
    publisher = models.ForeignKey(Publisher)

和示例 forms.py 代码:

class BookForm(ModelForm):
     class Meta:
         model = Book
         fields = ['title', 'publisher']

和示例views.py代码:

def sample(request):
  bf = BookForm(request.POST)
  return render(request, 'sample.html', {'BookForm': bf})

问题:

使用“BookForm”从模板代码中正确访问值所需的代码行是什么:publisher.name ?

4

1 回答 1

6

我已经能够用来{{ BookForm.instance.publisher.name }}显示外部字段值。这仅适用于显示当前实例。

于 2013-07-11T17:10:07.423 回答