当前位置: 首页 > 面试题库 >

UnicodeDecodeError:'ascii'编解码器无法解码位置0的字节0xe0:序数不在范围内(128)

傅琦
2023-03-14
问题内容

在我的其中一台计算机上,当我使用Google Apps引擎或Django时出现错误。

例如:

app.yaml

application: demas1252c
version: 1
runtime: python
api_version: 1


handlers:
   - url: /images
static_dir: images
   - url: /css
static_dir: css
   - url: /js
static_dir: js
   - url: /.*
script: demas1252c.py

demas1252c.py

import cgi
import wsgiref.handlers


from google.appengine.ext.webapp import template
from google.appengine.ext import webapp


class MainPage(webapp.RequestHandler): 
def get(self):
values = {'id' : 10}


self.response.out.write(template.render('foto.html', values))


application = webapp.WSGIApplication([('/', MainPage)], debug = True)
wsgiref.handlers.CGIHandler().run(application)

foto.html

<!DOCTYPE html>
<html lang="en">
    <head></head>
<body>some</body>
</html>

错误信息:

C:\artefacts\dev\project>"c:\Program Files\Google\google_appengine\dev_appserver.py" foto-hosting
Traceback (most recent call last):
  File "c:\Program Files\Google\google_appengine\dev_appserver.py", line 69, in <module>
    run_file(__file__, globals())
  File "c:\Program Files\Google\google_appengine\dev_appserver.py", line 65, in run_file
    execfile(script_path, globals_)
  File "c:\Program Files\Google\google_appengine\google\appengine\tools\dev_appserver_main.py", line 92, in <module>
    from google.appengine.tools import dev_appserver
  File "c:\Program Files\Google\google_appengine\google\appengine\tools\dev_appserver.py", line 140, in <module>
    mimetypes.add_type(mime_type, '.' + ext)
  File "C:\Python27\lib\mimetypes.py", line 344, in add_type
    init()
  File "C:\Python27\lib\mimetypes.py", line 355, in init
    db.read_windows_registry()
  File "C:\Python27\lib\mimetypes.py", line 260, in read_windows_registry
    for ctype in enum_types(mimedb):
  File "C:\Python27\lib\mimetypes.py", line 250, in enum_types
    ctype = ctype.encode(default_encoding) # omit in 3.x!
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe0 in position 0: ordinal not in range(128)

当我在Django中使用静态文件(不带gae)时,我遇到了非常类似的错误(具有不同的堆栈)。

我试图找到错误的原因,并向mimetypes.py添加了代码:

print '====='
print ctype
ctype = ctype.encode(default_encoding) # omit in 3.x!

然后,我在控制台中收到下一条消息:

=====
video/x-ms-wvx
=====
video/x-msvideo
=====
рєфшю/AMR
Traceback (most recent call last):

在注册表HKCR / Mime / Database / ContentType /中,我有五个带有俄语(西里尔字母)字母的键。但是如何解决此错误?


问题答案:

这是的错误mimetypes,由注册表中的错误数据触发。(рєфшю/AMR根本不是有效的MIME媒体类型。)

ctype是由返回的注册表项名称_winreg.EnumKey,该名称mimetypes应为Unicode字符串,但不是。不同于_winreg.QueryValueEx,它EnumKey返回一个字节字符串(直接从Windows API的ANSI版本开始;_winreg在Python 2中,即使它返回Unicode字符串也不使用Unicode接口,所以它永远不会正确读取非ANSI字符)。

因此,尝试.encode失败使用Unicode 解码错误试图编码回ASCII之前得到一个Unicode字符串!

try:
    ctype = ctype.encode(default_encoding) # omit in 3.x!
except UnicodeEncodeError:
    pass

这些行mimetypes仅应删除。



 类似资料: