Django在收集静态信息后不提供静态文件

时间:2019-05-14 04:11:36

标签: django django-templates django-views

因此,我正在关注本教程,该教程是在collectstatic之后以及从{%load static %%}更改为{%load staticfiles%}

之后提供静态文件的

并添加

`
+ static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)` to urls.py

AND adding
    `

STATICFILES_FINDERS = [
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
]`

对于url模式,它仍然没有加载静态文件。我尝试使用findstatic,但它仍尝试查找static而不是staticfiles。我将不胜感激,我已经尝试阅读文档并添加了所有内容,但它拒绝查看staticfiles文件夹并转为静态。

https://scotch.io/tutorials/working-with-django-templates-static-files#toc-settings-for-managing-static-files

https://github.com/amos-o/djangotemplates

0 个答案:

没有答案