Andrew-liu / my_blog_tutorial

It's the example of the development of blog by Django and Pure.
382 stars 205 forks source link

创建文章时以中文为文章名出现编码错误 #1

Closed tigerneil closed 9 years ago

tigerneil commented 9 years ago

model.py中做出下面的调整:

     def __str__(self) :
-        return self.title
+        return self.title.encode('utf-8')

参考

Andrew-liu commented 9 years ago

已经进行了修复, 感谢

tigerneil commented 9 years ago

:)不客气