{% static %}
我正在尝试使 django compress 工作,但我相信由于我的使用它不起作用。
我的模板是(我正在使用 pyjade 但没关系):
- load staticfiles
- load compress
| {% compress css %}
link(rel="stylesheet", href="{% static 'less/bootstrap.css' %} ")
link(rel="stylesheet", href="{% static 'timepicker/css/bootstrap-timepicker.min.css'%}")
link(rel="stylesheet", href="{% static 'leaflet/addons/locatecontrol/L.Control.Locate.css' %} ")
link(rel="stylesheet", href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.css")
link(href='//api.tiles.mapbox.com/mapbox.js/v1.3.1/mapbox.css', rel='stylesheet')
| {% endcompress %}
还有我的 settings.py 的一部分:
PROJECT_DIR = os.path.dirname(os.path.realpath(__file__))
STATIC_ROOT = os.path.join(PROJECT_DIR, '../static')
STATIC_URL = '/static/'
STATICFILES_DIRS = (
os.path.join(PROJECT_DIR, 'media'),
)
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
#'django.contrib.staticfiles.finders.DefaultStorageFinder',
'compressor.finders.CompressorFinder',
)
COMPRESS_URL = STATIC_URL
COMPRESS_ROOT = STATIC_ROOT
COMPRESS_STORAGE = "staticfiles.storage.StaticFileStorage"
INSTALLED_APPS = (....,'compressor',....)
即使我$ python manage.py collectstatic
压缩不起作用并吐出原始文件。在文档中它说我应该提供我认为我已经给出的绝对路径,不是吗?有人可以帮助进行压缩工作吗?谢谢。(我对 django 的静态文件不是很熟悉)。
更新
COMPRESS_ENABLED = True
按照我在设置中启用(和)的Timmy 的评论后DEBUG=False
,它仍然需要找到文件:
UncompressableFileError at /
'less/bootstrap.css ' could not be found in the COMPRESS_ROOT '/Users/diolor/mysite/wsgi/static' or with staticfiles.
只是要注意静态文件已正确找到并呈现(何时COMPRESS_ENABLED = False
)。
我的结构:
mysite/
wsgi/
myapp/
settings.py
manage.py
media/
#js & css files
static/
[...]
玩了一段时间后,看起来 compress 在 css 和{% static %}
.
如果你有
link(rel="stylesheet", href="/static/less/bootstrap.css")
它极大地压缩样式表,
link(rel="stylesheet", href="{% static 'less/bootstrap.css' %} ")
它会引发错误。
在 js 上,它渲染得很好:script(type="text/javascript", src='{% static "bootstrap/js/bootstrap.min.js" %}')