模型.py
class ReportPerson(models.Model):
report = models.ForeignKey(Report)
name = models.CharField('Name', max_length=100)
def __unicode__(self):
return self.name
视图.py
def report(request)
'''''''
reportperson = ReportPerson.objects.filter(report=report_id)[:2]
'''''''
return render(request,'report.html',{ 'reportperson':reportperson,})
模板
{{ reportperson }}
我的问题是查询的输出应该是这样的“约翰”,但我得到的输出是 [<ReportPerson: John>]
模型名称作为前缀。
我想以这种格式显示 db 中的值 john,paul,william.But 我得到的输出是这个 []
谢谢