为什么标题有中文就会报错?
因为你的Python版本是2.7的 Python3不存在这个问题
Python2.7解决这个问题也很简单 在manage.py中添加代码
reload(sys) sys.setdefaultencoding('utf8')