我将我的最终工作项目部署到了heroku。
问题是只有html内容加载,缺少静态文件。我尝试了很多但却遗漏了一些东你能发现错误。
# .. settings.py
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
'django.contrib.staticfiles.finders.FileSystemFinder',
)
STATICFILES_DIRS = (
# Put strings here, like "/home/html/static" or "C:/www/django/static".
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
os.path.join(BASE_DIR, 'static/'),
)
STATIC_ROOT = ''
STATIC_URL = '/static/'
TEMPLATE_DIRS = (
os.path.join(BASE_DIR, 'templates/'),
)
# List of callables that know how to import templates from various sources.
TEMPLATE_LOADERS = (
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
)
答案 0 :(得分:0)
您必须提供 STATIC_ROOT ...(不能为空)。因为“HEROKU”,总是在部署时运行'collectstatic'并且它创建像'静态文件'这样的文件夹以及通过该文件夹内容的方式运行的所有进程。