不确定如何在Django中显示我的ImageField。目前,我的图像位于/ media / static /,我的终端上的路径都匹配到图像在本地的位置。为什么图像不显示?
^^使用index.html中的上述代码来显示图像。
^^ settings.py
当前应用程序中的^^ urls.py
^^ models.py
^^ views.py
答案 0 :(得分:1)
您还需要将MEDIA_URL
添加到您的网址(请参阅docs):
urlpatterns = [
# ... the rest of your URLconf goes here ...
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)