我有一个项目,实际上是来自appfog(https://github.com/appfog/af-python-django)的测试,该测试可在localhost中顺利运行。但这是行不通的,至少静态文件一旦部署在appfog上就无法识别。
我只更改了模板的位置。

这是测试页http://st-test.eu01.aws.af.cm/。同样,管理页面也没有css http://st-test.eu01.aws.af.cm/admin/

这是我的配置(setting.py)

STATIC_ROOT = ''

STATIC_URL = '/static/'

STATICFILES_DIRS = (
)

STATICFILES_FINDERS = (
    'django.contrib.staticfiles.finders.FileSystemFinder',
    'django.contrib.staticfiles.finders.AppDirectoriesFinder',
)

我也尝试过
STATIC_ROOT = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'static')

但没有任何变化。

我已经尝试过在本地进行collectstatic,然后更新存储库中的文件,但是没有任何效果。

你们当中有人知道如何使它起作用吗?

顺便说一句,在模板中,我使用{% load staticfiles %}{% static "css/style.css" %}

最佳答案

这对我有用:

settings.py:

import os
ROOT_PATH = os.path.dirname(__file__)

STATIC_ROOT = os.path.join(ROOT_PATH, 'static')
STATIC_URL = '/static/'

urls.py:
(r'^static/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.STATIC_ROOT}),

关于django - appfog Django静态文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13379103/

10-11 02:59