码迷,mamicode.com
首页 > 其他好文 > 详细

TypeError at /admin/booktest/book_infor/add/ __str__ returned non-string (type bytes)

时间:2019-11-10 14:02:40      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:ret   页面   error   pytho   ror   alt   django   img   就会   

问题:

在Django的管理页面进行添加的时候

技术图片

 

 

出现了如下的错误

 TypeError at /admin/booktest/book_infor/add/ __str__ returned non-string (type bytes)

技术图片

 

 原因就在于你在写的models模块的时候没有注意你使用的是python2还是python3系列,两者实际上有着非常大的区别。就好像成人和小孩的区别一样

pyhotn2中的__str__():方法

1     def __str__(self):
2         return self.btitle.encode(utf-8)

python3中的__str__():方法

    def __str__(self):
        return self.btitle

因为在python3中会自动进行编码不需要指定编码格式,所以在python3中使用python2的那种格式就会报错

 

 

 

 

 

TypeError at /admin/booktest/book_infor/add/ __str__ returned non-string (type bytes)

标签:ret   页面   error   pytho   ror   alt   django   img   就会   

原文地址:https://www.cnblogs.com/huao990928/p/11829543.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!