從設置中刪除TEMPLATE_STRING_IF_INVALID = 'Invalid: %s'
或相似,並添加string_if_invalid
新TEMPLATES
設置的選項:如果您使用的是生產和發展設置文件
DEBUG = False
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [
os.path.join(BASE_DIR, 'templates'),
],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.contrib.auth.context_processors.auth',
],
'debug': DEBUG,
'string_if_invalid': 'Invalid: "%s"'
},
},
]
另外,添加以下語句發展設置文件:
DEBUG = True
TEMPLATES[0]['OPTIONS']['debug'] = DEBUG
TEMPLATES[0]['OPTIONS']['context_processors'].append('django.template.context_processors.debug')
TEMPLATES[0]['OPTIONS']['string_if_invalid'] = 'Invalid: "%s"'