django中的_unicode_()函数错误

时间:2014-05-23 02:03:48

标签: python django unicode django-models

我遇到了这个问题,

class Poll(models.Poll):
    def _unicode_(self):
        return (self.question)

这应返回对象,但返回:

Poll: Poll Object

1 个答案:

答案 0 :(得分:1)

观看Dunder

该方法应称为__unicode__(),而不是_unicode_()

class Poll(models.Poll)
    def __unicode__(self)
        return(self.question)