Django的静态文件让我疯狂。我已经成功地从TEMPLATE_DIRS中指定的目录加载我的模板,但是当我尝试从STATICFILES_DIRS加载我的css和js文件时它不起作用。
以下是我的settings.py文件的相关部分:
MEDIA_ROOT = ''
MEDIA_URL = ''
STATIC_ROOT = ''
STATIC_URL = '/static/'
STATICFILES_DIRS = (
'/home/jrubins/Documents/crowdcluster/crowdcluster/Design/websiteDesign/website/',
)
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
)
TEMPLATE_LOADERS = (
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
)
TEMPLATE_CONTEXT_PROCESSORS = (
'django.core.context_processors.debug',
'django.core.context_processors.i18n',
'django.core.context_processors.media',
'django.core.context_processors.static',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
)
TEMPLATE_DIRS = (
'/home/jrubins/Documents/crowdcluster/crowdcluster/Design/websiteDesign/website/',
)
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
'items'
)
如果您需要更多信息或者看错了,请告诉我。提前谢谢。
答案 0 :(得分:1)
看起来我没有在我的视图中的render_to_response()中添加RequestContext。解决了这个问题,应该仔细查看django文档。
答案 1 :(得分:0)
我遇到了同样的问题,但我发现这个网站有很多可能有用的信息 http://www.b-list.org/weblog/2006/jun/14/django-tips-template-context-processors/