Caught TypeError while rendering: coercing to Unicode:解决方法

今天出了个比较麻烦的方法”Caught TypeError while rendering: coercing to Unicode:“

找了半天发现是个低级错误,就是django中不能显示对象,必须取对象的属性所为显示。改下就行了

def __unicode__(self):
        return self.UserID

 class Admin():  
        sort_fields=["UserID"]     

其中UserID是外键,必须改为UserID.name之类的就是正确的了


你可能感兴趣的:(python,django)