我遇到了这个问题,
class Poll(models.Poll):
def _unicode_(self):
return (self.question)
这应返回对象,但返回:
Poll: Poll Object
答案 0 :(得分:1)
观看Dunder
!
该方法应称为__unicode__()
,而不是_unicode_()
:
class Poll(models.Poll)
def __unicode__(self)
return(self.question)