模板在部署服务器上正确呈现,但在runserver上却出现TemplateDoesNotExist错误

时间:2016-10-12 13:19:39

标签: python django nginx django-templates uwsgi

我有一个像这样的项目结构

mainproject
├── manage.py
├── mainproject
│   ├── settings.py
│   ├── templates
│   │   └── mainproject
│   │       └── index.html
│   ├── urls.py
│   ├── views.py
│   └── wsgi.py
└── app
    ├── admin.py
    ├── apps.py
    ├── forms.py
    ├── models.py
    ├── templates
    │   └── app
    │       ├── index.html
    │       └── abc.html
    ├── urls.py
    └── views.py

现在我的settings.py中有

TEMPLATES = [
    {   
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': ['mainproject/templates', 'app/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',
            ],
        },
    },
]

当我在部署服务器上的主域上使用它时(使用nginx和uwsgi部署),它运行良好。

我可以访问domain.com上的mainproject索引以及domain.com/app处的应用

但使用runserver时,只有domain.com:8000/app有效且domain.com:8000错误TemplateDoesNotExist at /

为什么这样以及如何解决这个问题?

模板加载器postmortem:

 Using engine django:
django.template.loaders.filesystem.Loader: /home/mohit/mainproject/templates/mainproject/index.html (Source does not exist)
django.template.loaders.filesystem.Loader: /home/mohit/app/templates/mainproject/index.html (Source does not exist)
django.template.loaders.app_directories.Loader: /home/mohit/Env/mainproject/lib/python2.7/site-packages/django/contrib/admin/templates/mainproject/index.html (Source does not exist)
django.template.loaders.app_directories.Loader: /home/mohit/Env/mainproject/lib/python2.7/site-packages/django/contrib/auth/templates/mainproject/index.html (Source does not exist)
django.template.loaders.app_directories.Loader: /home/mohit/mainproject/app/templates/mainproject/index.html (Source does not exist)

如果我在settings.py中更改DIRS中的TEMPLATES行并将其设为

'DIRS': ['mainproject/mainproject/templates', 'app/templates'],

然后它适用于runserver,并且在部署服务器上不起作用。

1 个答案:

答案 0 :(得分:0)

根据xtranophilist和Amar的评论,我使用了相对路径,如下所示:

BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
....

然后在模板目录中:

'DIRS': [BASE_DIR + '/mainproject/templates']