我正在使用 Python-2.6 CGI
脚本,但在执行 json.dumps()
时在服务器日志中发现此错误,
Traceback (most recent call last):
File "/etc/mongodb/server/cgi-bin/getstats.py", line 135, in <module>
print json.dumps(__getdata())
File "/usr/lib/python2.7/json/__init__.py", line 231, in dumps
return _default_encoder.encode(obj)
File "/usr/lib/python2.7/json/encoder.py", line 201, in encode
chunks = self.iterencode(o, _one_shot=True)
File "/usr/lib/python2.7/json/encoder.py", line 264, in iterencode
return _iterencode(o, 0)
UnicodeDecodeError: 'utf8' codec can't decode byte 0xa5 in position 0: invalid start byte
在这里,
__getdata()
函数返回 dictionary {}
。
在发布这个问题之前,我已经提到 了这个 问题 os SO。
更新
下一行正在伤害 JSON 编码器,
now = datetime.datetime.now()
now = datetime.datetime.strftime(now, '%Y-%m-%dT%H:%M:%S.%fZ')
print json.dumps({'current_time': now}) # this is the culprit
我得到了一个临时修复
print json.dumps( {'old_time': now.encode('ISO-8859-1').strip() })
但我不确定这样做是否正确。
原文由 Deepak Ingole 发布,翻译遵循 CC BY-SA 4.0 许可协议
错误是因为字典中有一些非ascii字符,无法对其进行编码/解码。避免此错误的一种简单方法是使用
encode()
函数对此类字符串进行编码,如下所示(如果a
是具有非 ASCII 字符的字符串):