gpt4 book ai didi

python - Django 项目路径中的 Unicode 字符

转载 作者:太空宇宙 更新时间:2023-11-03 17:59:20 24 4
gpt4 key购买 nike

我在 Mac 上使用 Django 1.7.3。

我在以下路径中创建了一个 Django 项目:

/Users/heng/百度云同步盘/Dev/django/testproject/

(该项目称为“testproject”)

我在加载模板文件时遇到问题:

/Users/cheng/百度云同步盘/Dev/django/testproject/
-> vis
-> templates
-> vis
-> index.html

(我的应用程序名称称为“vis”)

当我点击正确的 URL 时,我得到:

UnicodeEncodeError at /vis/
'ascii' codec can't encode characters in position 13-18: ordinal not in range(128)

Python Path: ['/Users/cheng/\xe7\x99\xbe\xe5\xba\xa6\xe4\xba\x91\xe5\x90\x8c\xe6\xad\xa5\xe7\x9b\x98/Dev/django/testproject' ...

Unicode error hint

The string that could not be encoded/decoded was: heng/百度云同步盘/Dev/

可以看到,“百度云同步盘”路径的unicode部分已被ascii编码为“\xe7\x99\xbe\xe5\xba\xa6\xe4\xba\x91\xe5\x90\x8c”\xe6\xad\xa5\xe7\x9b\x98'。

除了将项目移动到非 unicode 目录之外,还有什么方法可以解决这个问题吗?

谢谢!

<小时/>

更新:我正在使用 python 2.7.9。完整的堆栈跟踪:

Environment:


Request Method: GET
Request URL: http://127.0.0.1:8000/vis/

Django Version: 1.7.3
Python Version: 2.7.9
Installed Applications:
('django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'vis')
Installed Middleware:
('django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware')


Traceback:
File "/usr/local/lib/python2.7/site-packages/django/core/handlers/base.py" in get_response
111. response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/Users/cheng/百度云同步盘/Dev/django/testproject/vis/views.py" in index
7. return render(request, 'vis/index.html', context)
File "/usr/local/lib/python2.7/site-packages/django/shortcuts.py" in render
50. return HttpResponse(loader.render_to_string(*args, **kwargs),
File "/usr/local/lib/python2.7/site-packages/django/template/loader.py" in render_to_string
170. t = get_template(template_name, dirs)
File "/usr/local/lib/python2.7/site-packages/django/template/loader.py" in get_template
144. template, origin = find_template(template_name, dirs)
File "/usr/local/lib/python2.7/site-packages/django/template/loader.py" in find_template
126. loader = find_template_loader(loader_name)
File "/usr/local/lib/python2.7/site-packages/django/template/loader.py" in find_template_loader
98. TemplateLoader = import_string(loader)
File "/usr/local/lib/python2.7/site-packages/django/utils/module_loading.py" in import_string
26. module = import_module(module_path)
File "/usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/importlib/__init__.py" in import_module
37. __import__(name)
File "/usr/local/lib/python2.7/site-packages/django/template/loaders/app_directories.py" in <module>
33. app_template_dirs = calculate_app_template_dirs()
File "/usr/local/lib/python2.7/site-packages/django/template/loaders/app_directories.py" in calculate_app_template_dirs
27. template_dir = template_dir.decode(fs_encoding)
File "/usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/utf_8.py" in decode
16. return codecs.utf_8_decode(input, errors, True)

Exception Type: UnicodeEncodeError at /vis/
Exception Value: 'ascii' codec can't encode characters in position 13-18: ordinal not in range(128)

最佳答案

File "/usr/local/lib/python2.7/site-packages/django/template/loaders/app_directories.py" in calculate_app_template_dirs
27. template_dir = template_dir.decode(fs_encoding)

这似乎是 Django 模板加载器中的一个错误。

它正在尝试.decode一个已经是Unicode的字符串,导致隐式.encode为默认编码,在您的情况下是ASCII,所以它不能对中文进行编码。有问题的字符串是一个模块文件路径,它来自AppConfig.path,它被定义为一个Unicode字符串。

我建议针对 Django 提交一个错误(例如“模板加载器因默认编码中路径不可编码而失败”)。同时,您可以尝试通过在 sitecustomize.py 中将默认编码设置为 utf-8 来解决此问题,或者仅从路径为的目录运行您的应用程序全 ASCII。

关于python - Django 项目路径中的 Unicode 字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27996774/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com