Django 1.11 Python 3.6 ImageField 404错误

时间:2017-08-03 03:19:45

标签: django imagefield

enter image description here

不确定如何在Django中显示我的ImageField。目前,我的图像位于/ media / static /,我的终端上的路径都匹配到图像在本地的位置。为什么图像不显示?

index.html

^^使用index.html中的上述代码来显示图像。

enter image description here

^^ settings.py

enter image description here

当前应用程序中的

^^ urls.py

enter image description here

^^ models.py

enter image description here

^^ views.py

1 个答案:

答案 0 :(得分:1)

您还需要将MEDIA_URL添加到您的网址(请参阅docs):

urlpatterns = [
# ... the rest of your URLconf goes here ...
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)