简体   繁体   English

django.contrib.staticfiles.finders.find需要帮助

[英]django.contrib.staticfiles.finders.find help needed

I have the following Django project layout: 我有以下Django项目布局:

project_folder/
    app_folder/
        static/
           folder1/
               file1
        templates/
        ...
    compressor -> (symlink to django_compressor app with my modifications)
    __init__.py
    manage.py
    settings.py
    urls.py

From the templatetag specificed in my fork of django_compressor I'm calling a class that does the following: 从我在django_compressor的fork中指定的templatetag中,我正在调用一个执行以下操作的类:

class StorageMixin(object):
    from django import VERSION as DJANGO_VERSION
    if DJANGO_VERSION[:2] >= (1, 3):
        from django.contrib.staticfiles.finders import find as _django_find
        def _find_file_path(self, path):
            return self._django_find(path)
    else:
        def _find_file_path(self, path):
            static_roots = getattr(settings, 'STATIC_ROOTS', []) + [settings.COMPRESS_ROOT]
            for root in static_roots:
                filename = os.path.join(root, basename)
                if os.path.exists(filename):
                    return filename
            return None

So, if django is of the new version, it tries to use staticfiles finders, otherwise mimics its basic finder through the STATIC_ROOTS config variable. 因此,如果django是新版本,它将尝试使用staticfiles查找器,否则将通过STATIC_ROOTS配置变量模拟其基本查找器。

Finally, the question: given the folders layout above, I pass "folder1/file1" to finders.find method, and I have the following settings: 最后,问题是:给定上面的文件夹布局,我将"folder1/file1"传递给finders.find方法,并且具有以下设置:

INSTALLED_APPS = (

    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.messages',
    'django.contrib.staticfiles',

    'compressor',
    'app_folder',
)

and

TEMPLATE_LOADERS = (
    'django.template.loaders.filesystem.Loader',
    'django.template.loaders.app_directories.Loader',
#     'django.template.loaders.eggs.Loader',
)

and I get None from the find call. 我从find电话中得到“ None ”。

Any ideas? 有任何想法吗?

UPD . UPD More strange details: I ran 更奇怪的细节:我跑了

python manage.py shell

and did 并且做了

from django.contrib.staticfiles.finders import find
find("folder1/file1")

And it gave me the correct result... 它给了我正确的结果...

答案是:导入整个模块,而不仅仅是find方法

I am using the static files with my new site and it took a while to get set up. 我在新站点上使用了静态文件,并且花了一些时间进行设置。 Do you have something like this in your settings.py? 您的settings.py中是否有类似的内容?

Also check out: Django staticfiles app help 还请查看: Django staticfiles应用程序帮助

# Absolute path to the directory that holds media.
# Example: "/home/media/media.lawrence.com/static/"
STATICFILES_ROOT =  '/path/to/my/site/static/'
STATIC_ROOT = STATICFILES_ROOT

# URL that handles the static files served from STATICFILES_ROOT.
# Example: "http://static.lawrence.com/", "http://example.com/static/"
STATICFILES_URL = '/static/'
STATIC_URL = STATICFILES_URL

# URL prefix for admin media -- CSS, JavaScript and images.
# Make sure to use a trailing slash.
# Examples: "http://foo.com/static/admin/", "/static/admin/".
ADMIN_MEDIA_PREFIX = '/static/admin/'

# A list of locations of additional static files
STATICFILES_DIRS = (
    ("game",      BASE_DIR + "/game/media"),
    ("sitemedia", BASE_DIR + "/templates/media/"),
)
STATIC_DIRS = STATICFILES_DIRS

# 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_FINDERS= STATICFILES_FINDERS

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM