我已经检查了很多其他线程,因为无法使用Django中的静态文件应用程序提供静态内容,但尚未找到解决方案。
settings.py
STATIC_ROOT = '/opt/django/webtools/static/'
STATIC_URL = '/static/'
STATICFILES_DIRS = (
"/home/html/static",
)
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
# 'django.contrib.staticfiles.finders.DefaultStorageFinder',
)
模板
相关线......
<img src="{{ STATIC_URL }}macmonster/img/macmonster-logo-blue.png" >
日志
从日志中看起来路径是正确的,但是它仍然会导致404 ..
[10/Feb/2013 16:19:50] "GET /static/macmonster/img/macmonster-logo-blue.png HTTP/1.1" 404 1817
[10/Feb/2013 16:19:51] "GET /static/macmonster/img/macmonster-logo-blue.png HTTP/1.1" 404 1817
答案 0 :(得分:12)
对于静态文件的本地提供,如果你没有设置任何形式的静态文件收集,如果你正在运行Django 1.3+,我相信这是你的{{1在引用静态文件时应该看起来像
settings.py
请注意,我在这里遗漏了# Absolute path to the directory static files should be collected to.
# Don't put anything in this directory yourself; store your static files
# in apps' "static/" subdirectories and in STATICFILES_DIRS.
# Example: "/home/media/media.lawrence.com/static/"
STATIC_ROOT = ''
# URL prefix for static files.
# Example: "http://media.lawrence.com/static/"
STATIC_URL = '/static/'
# Additional locations of static files
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.
'/Users/cupcake/Documents/Workspaces/myDjangoProject/someOtherFolderPerhapsIfYouWant/static',
)
# List of finder classes that know how to find static files in
# various locations.
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
# 'django.contrib.staticfiles.finders.DefaultStorageFinder',
)
。
这是因为我“还没有”静态文件集合的需要。
收集静态文件是为了提供(拼写)提供多个不同的staticfiles文件夹的问题,因此他们合并了通常用于帮助解决此问题的STATIC_ROOT
应用程序。
这样做,以及文档中描述的内容,是从您的所有应用程序中获取所有静态文件,并将它们放入一(1)个文件夹,以便在将您的应用程序投入生产时更容易使用。
所以你的问题是你已经“错过”了这一步,这就是为什么你在尝试访问它时获得404的原因。 因此您需要使用静态文件的绝对路径即。在mac或unix系统上它应该是这样的:
staticfiles
另外,你可以简化并“修复”像我用于插图的硬编码路径的需要,并且这样做
'/Users/cupcake/Documents/Workspaces/myDjangoProject/someOtherFolderPerhapsIfYouWant/static',
这也将解决可移植性问题。找到一篇关于它的好的Stackoverflow帖子here
我希望我说得更清楚,否则请纠正我,如果我错了^ _ ^!
对于收集以及如何在较新版本的Django中管理静态文件,请阅读此链接 The staticfiles app
答案 1 :(得分:3)
更改
STATIC_URL = '/static/'
设置
STATIC_URL = 'http://yourdomain.com/static/'
这是令人难以置信的,但是,经过1小时的搜索,解决方案解决了我的静态文件问题,并从STATIC_ROOT
中删除了STATICFILES_DIRS
。
STATICFILES_DIRS
仅用于收集模块中的所有静态内容并将其存储在STATIC_ROOT
。