2

我已经做了很多点击和同步数据库,但还没有找到解决方案。我收到此错误:

TemplateDoesNotExist at /quotes/
quotes/index.html
Request Method: GET
Request URL:    http://quoteboard94.herokuapp.com/quotes/
Django Version: 1.4.4 
Exception Type: TemplateDoesNotExist
Exception Value:    
quotes/index.html
Exception Location: /app/.heroku/python/lib/python2.7/site-packages/django/template/loader.py in find_template, line 138
Python Executable:  /app/.heroku/python/bin/python
Python Version: 2.7.3
Python Path:    
['/app',
 '/app/.heroku/python/lib/python2.7/site-packages/pip-1.1-py2.7.egg',
 '/app',
 '/app/.heroku/python/lib/python27.zip',
 '/app/.heroku/python/lib/python2.7',
 '/app/.heroku/python/lib/python2.7/plat-linux2',
 '/app/.heroku/python/lib/python2.7/lib-tk',
 '/app/.heroku/python/lib/python2.7/lib-old',
 '/app/.heroku/python/lib/python2.7/lib-dynload',
 '/app/.heroku/python/lib/python2.7/site-packages',
 '/app/.heroku/python/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg-info']

我的设置是这样的:

PROJECT_DIR = os.path.dirname(__file__) #for heroku

TEMPLATE_DIRS = (
    os.path.join(PROJECT_DIR, '/templates/'), # for heroku
    '/Users/jacksongonzales/projects/QuoteBoard/templates/',
)

import os.path也是最高的。

TEMPLATE_DIRS 下的路径是我的模板的绝对路径。

我没有为 PROJECT_DIR 和 TEMPLATE_DIRS 变量添加正确的东西吗?

4

2 回答 2

3

我相信应该是

os.path.join(PROJECT_DIR, 'templates'), # for heroku

没有斜线。

os.path.join(PROJECT_DIR, '/templates/'), # for heroku

返回/templates/不是您期望的路径

来自文档

如果任何组件是绝对路径,则所有先前的组件(在 Windows 上,包括先前的驱动器号,如果有的话)都将被丢弃,并继续加入。

于 2013-02-20T23:22:48.980 回答
2

这是我为 heroku 项目设置的。

# here() gives us file paths from the root of the system to the directory
# holding the current file.
here = lambda * x: os.path.join(os.path.abspath(os.path.dirname(__file__)), *x)

PROJECT_ROOT = here("..")
# root() gives us file paths from the root of the system to whatever
# folder(s) we pass it starting at the parent directory of the current file.
root = lambda * x: os.path.join(os.path.abspath(PROJECT_ROOT), *x)

....

TEMPLATE_DIRS = (
    root('templates'),
)

更新:我的项目与部署的项目具有相同的本地模板结构,因此我不需要在模板目录中添加直接路径。你有一个:

'/Users/jacksongonzales/projects/QuoteBoard/templates/',

如果你的第一个条目TEMPLATE_DIRS是正确的,你需要第二个吗?

于 2013-02-20T23:05:52.080 回答