coercing to Unicode: need string or buffer
django查询数据报错 typeError: coercing to Unicode: need string or buffer,
操作方法
- 01
检查被查询的model,在所要查询的model后面添加 def __unicode__(self): # 在Python3中使用 def __str__(self): return self.title # title为model的非外键字段
赞 (0)