对于静态文件的本地服务,如果您没有设置任何形式的静态文件收集,并且如果您正在运行 Django 1.3+,我相信这是您在引用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',
)
请注意,我已经忽略了STATIC_ROOT
这里。这是因为我还不需要“刚刚”收集静态文件。
静态文件的收集是为了缓解(拼写)为多个不同的静态文件文件夹提供服务的问题,因此他们合并了staticfiles
通常用于帮助解决此问题的应用程序。这样做的目的(在文档中进行了描述)是从您的所有应用程序中获取所有静态文件并将它们放入一 (1) 个文件夹中,以便在将您的应用程序投入生产时更轻松地提供服务。
所以你的问题是你“错过了”这一步,这就是为什么你在尝试访问它们时得到 404。
因此,您需要使用静态文件的绝对路径,即。在 mac 或 unix 系统上,它应该看起来像这样:
'/Users/cupcake/Documents/Workspaces/myDjangoProject/someOtherFolderPerhapsIfYouWant/static',
此外,您可以简化并“修复”需要像我用于说明的硬编码路径并这样做
PROJECT_ROOT = os.path.dirname(os.path.abspath(__file__))
STATICFILES_DIRS = (
PROJECT_ROOT + '/static/'
)
这也将解决可移植性问题。一个很好的 Stackoverflow 帖子可以在这里找到
我希望我说得更清楚一点,否则如果我错了,请纠正我^_^!
要在较新版本的 Django 中收集和管理静态文件,请阅读此链接静态文件
应用程序