因此,我正在关注本教程,该教程是在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文件夹并转为静态。