如果在控制台中运行此代码 - 它运行良好(它是俄语),但如果在 Apache2 服务器上像 cgi 一样运行它 - 它会失败:<type 'exceptions.UnicodeEncodeError'>: 'ascii' codec can't encode characters in position 8-9: ordinal not in range(128)
. 代码是:
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
import cgitb
cgitb.enable()
print "Content-Type: text/html;charset=utf-8"
print
s=u'Nikolja \u043d\u0435 \u0421\u0430\u0440\u043a\u043e\u0437\u0438!'
print s#.encode('utf-8')
是的,解决方案是取消注释.encode('utf-8')
,但我花了更多时间来理解为什么而不是发生,我看不到答案。