描述:
我想知道如何在模板代码中访问 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 ?