2015-04-01 51 views

回答

4

urls.py

from django.conf import settings 
from django.conf.urls import patterns, include, url 
from django.conf.urls.static import static 
from gallery.core.views import * 
from django.contrib import admin 

urlpatterns = patterns(
    'gallery.core.views', 
    url(r'^$', 'home', name='home'), 
    url(r'^gallery/$', GalleryList.as_view(), name='gallery_list'), 
    url(r'^admin/', include(admin.site.urls)), 
) + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) 

settings.py

MEDIA_ROOT = BASE_DIR.child('media') 
MEDIA_URL = '/media/' 

STATIC_ROOT = BASE_DIR.child('staticfiles') 
STATIC_URL = '/static/' 

gallery_list.html

<html> 
<body> 
    <h1>Gallery</h1> 

    {% if gallery %} 
     {% for photo in gallery %} 
      <p><img src="{{ photo.photo.url }}" width="300px"></p> 
      <p>{{ photo.description }}</p> 
     {% endfor %} 
    {% endif %} 

</body> 
</html> 

秘密是photo.photo.url

+0

谢谢,谢谢,谢谢!我一直在研究这个问题超过一个小时,而你的问题已经解决了我的问题(并且很快)。 – allardbrain 2016-06-09 19:03:21