尝试发送带有希腊文件名的文件时出现UnicodeError

时间:2018-09-24 16:46:28

标签: python apache

我已经在set()中创建并填充了希腊名称,然后将这组值传递给视图函数。

当我尝试打印此集时,希腊名称显示为乱码。我认为这与Apache mod_wsgi或Bottle并非以utf-8支持有关。

我如何告诉Apache / Bottle使用LANG = el_GR.utf-8,以便我可以正确显示unicode,因为我认为是这种情况?

我在httpd.conf中查找了AddDefaultCharset utf-8,但该功能已启用,因此我不得不问为什么希腊字符显示为乱码?

这是我尝试下载带有希腊文件名的文件的时候。

Error: 500 Internal Server Error
Sorry, the requested URL 'http://superhost.gr/downloads/file' caused an error:

Internal Server Error
Exception:
UnicodeEncodeError('ascii', '/static/files/Î\x92ιογÏ\x81αÏ\x86ικÏ\x8c - Î\x9dίκοÏ\x82.docx', 14, 34, 'ordinal not in range(128)')
Traceback:
Traceback (most recent call last):
  File "/usr/lib/python3.6/site-packages/bottle.py", line 862, in _handle
    return route.call(**args)
  File "/usr/lib/python3.6/site-packages/bottle.py", line 1740, in wrapper
    rv = callback(*a, **ka)
  File "/usr/lib/python3.6/site-packages/bottle.py", line 2690, in wrapper
    return func(*a, **ka)
  File "/home/nikos/public_html/downloads.py", line 148, in file
    return static_file(filename, root='/static/files', download=True)
  File "/usr/lib/python3.6/site-packages/bottle.py", line 2471, in static_file
    if not os.path.exists(filename) or not os.path.isfile(filename):
  File "/usr/lib64/python3.6/genericpath.py", line 19, in exists
    os.stat(path)
UnicodeEncodeError: 'ascii' codec can't encode characters in position 14-33: ordinal not in range(128)

用于下载文件的代码为:

return static_file(filename, root='/static/files', download=True)

我的系统符合utf-8

[root@superhost public_html]# echo $LANG
en_US.UTF-8

也许是Apache的东西,还是Python3的探针?

1 个答案:

答案 0 :(得分:1)

您不能将Bottle static_file()与Unicode文件名和download=True一起使用。有关此限制的两种替代解决方案,请参见this question的公认答案。