Django MEDIA_URL and MEDIA_ROOT

前端 未结 13 1092
天命终不由人
天命终不由人 2020-11-22 11:36

I\'m trying to upload an image via the Django admin and then view that image either in a page on the frontend or just via a URL.

Note this is all on my local machine

13条回答
  •  粉色の甜心
    2020-11-22 12:25

    Adding to Micah Carrick answer for django 1.8:

    if settings.DEBUG:
      urlpatterns.append(url(r'^media/(?P.*)$', 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT}))
    

提交回复
热议问题