我正在尝试将静态文件加载到我的Django项目中,但它还没有工作。
在我的settings.py文件中,我定义了以下内容:
STATIC_URL = '/static/'
STATICFILE_DIRS = os.path.join(BASE_DIR,'static')
这是关于如何设置项目结构的屏幕截图:
渲染模板时,只显示文本 - 没有图像。下面的HTML显示静态文件加载背后的语法:
<!doctype html>
{% load static %}
<html class="no-js" lang="">
<head>
</head>
<body>
<h1>Test</h1>
<img src="{% static 'test.png' %}" alt="">
</body>
</html>
非常感谢任何帮助
答案 0 :(得分:1)
确保运行python manage.py collectstatic
以填充静态文件夹。
此外,在开发过程中,您可以在主urls.py
中使用以下内容来提供静态文件(来自django文档https://docs.djangoproject.com/en/2.0/howto/static-files/#serving-static-files-during-development):
from django.conf import settings
from django.conf.urls.static import static
urlpatterns = [
# ... the rest of your URLconf goes here ...
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
您必须在STATIC_ROOT
中配置settings.py
。