将静态文件加载到Django Dev环境中的问题

时间:2018-01-28 01:10:52

标签: django django-static

我正在尝试将静态文件加载到我的Django项目中,但它还没有工作。

在我的settings.py文件中,我定义了以下内容:

STATIC_URL = '/static/'
STATICFILE_DIRS = os.path.join(BASE_DIR,'static')

这是关于如何设置项目结构的屏幕截图:

enter image description here

渲染模板时,只显示文本 - 没有图像。下面的HTML显示静态文件加载背后的语法:

<!doctype html>
{% load static %}
<html class="no-js" lang="">
    <head>
    </head>
    <body>
        <h1>Test</h1>
        <img src="{% static 'test.png' %}" alt="">
    </body>
</html>

非常感谢任何帮助

1 个答案:

答案 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