django中文编码无法显示的问题?


我在尝试用django编写一个app,在提交一个包含中文字符的表单后,想通过另外一个网页查看提交的内容,结果系统提示以下错误:

Caught UnicodeEncodeError while rendering: 'ascii' codec can't encode 
characters in position 4-5: ordinal not in range(128)

encoding 编程 python django

我de永恒 11 years, 2 months ago

你是不是在model.py里面使用了 __str__ 了?换成__unicode__试试吧吧。

找面包的小鸟 answered 11 years, 2 months ago

Your Answer