8

我已经检查了很多其他线程,它们无法使用 Django 中的静态文件应用程序提供静态内容,但还没有找到解决方案。

设置.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
4

2 回答 2

14

对于静态文件的本地服务,如果您没有设置任何形式的静态文件收集,并且如果您正在运行 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 中收集和管理静态文件,请阅读此链接静态文件 应用程序

于 2013-02-10T17:29:39.437 回答
3

改变

STATIC_URL = '/static/'

STATIC_URL = 'http://yourdomain.com/static/'

这令人难以置信,但是,经过 1 小时的搜索,解决方案解决了我的静态文件问题并STATIC_ROOTSTATICFILES_DIRS. STATICFILES_DIRS仅用于收集模块中的所有静态并将其存储在STATIC_ROOT.

于 2013-10-31T07:03:52.147 回答