3

如何在 django admin 中显示 IntegerField?

我的错误:强制转换为 Unicode:需要字符串或缓冲区,找到 int

class Day(models.Model):
    day = models.IntegerField()

    def __unicode__(self):
        return self.day
4

1 回答 1

7

你需要返回一个字符串,而不是一个整数。像这样:

return str(self.day)
于 2012-11-26T12:50:09.490 回答