您的位置:首页 > 编程语言 > Go语言

django学习——1.11版本中template出现warnning

2018-01-02 11:50 309 查看
出现如下警告:

WARNINGS:
?: (1_8.W001) The standalone TEMPLATE_* settings were deprecated in Django 1.8 and the TEMPLATES dictionary takes precedence. You must put the values of the following settings into your default TEMPLATES dict: TEMPLATE_DIRS.


解决方法:在setting.py中将TEMPLATE_DIRS取消,并写入前面的配置中即可,如下

TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR,  'templates'),],
'APP_DIRS': True,
...

#TEMPLATE_DIRS = (os.path.join(BASE_DIR,  'templates'),)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: