如何在Django settings.py中修复此错误?

时间:2019-12-17 18:28:09

标签: django django-templates internationalization settings django-i18n

我正在尝试使用i18n进行一些翻译。我已在我的TEMPLATES的setting.py文件中导入了一些库。

问题是,如果我导入django.core.context_processors.i18n,我的Iapp会显示错误,并且无法正常工作。

settings.py文件中的我的模板

TEMPLATES = [
{
    'BACKEND': 'django.template.backends.django.DjangoTemplates',
    'DIRS': [os.path.join(BASE_DIR, 'templates')],
    'APP_DIRS': True,
    'OPTIONS': {
        'context_processors': [
            'django.template.context_processors.debug',
            'django.template.context_processors.request',
            'django.contrib.auth.context_processors.auth',
            'django.contrib.messages.context_processors.messages',
            'django.core.context_processors.i18n', #i18n
        ],
    },
},

]

如果我导入最后一行,我的应用将显示此错误:

/ myapp2 /中的

ModuleNotFoundError 没有名为“ django.core.context_processors”的模块

提前谢谢

1 个答案:

答案 0 :(得分:0)

在较新版本的django中,该值应为django.template.context_processors.i18n。参见https://docs.djangoproject.com/en/3.0/ref/templates/api/#django-template-context-processors-i18n