2017-10-19 73 views
-1

您好我想獲得用戶的個人資料圖片從對應於已登錄用戶Django的MySQL數據庫顯示..Django將不會從數據庫中顯示圖像

這裏是我的settings.py

# Build paths inside the project like this: os.path.join(BASE_DIR, ...) 
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) 
TEMPLATE_DIR = os.path.join(BASE_DIR,'templates') 
STATIC_DIR = os.path.join(BASE_DIR,'static') 
MEDIA_DIR = os.path.join(BASE_DIR,'media') 

# Static files (CSS, JavaScript, Images) 
# https://docs.djangoproject.com/en/1.10/howto/static-files/ 

STATIC_URL = '/static/' 
STATICFILES_DIRS = [STATIC_DIR, ] 

# Media files 

MEDIA_ROOT = MEDIA_DIR 
#MEDIA_DIRS = [MEDIA_DIR, ] 
MEDIA_URL = '/media/' 
ADMIN_MEDIA_PREFIX = '/admin/media/' 

這裏是我的urls.py:

urlpatterns = [ 
    url(r'^$', views.index, name='index'), 
    url(r'^smartcity/',include('smartcity.urls')), 
    #url(r'^accounts/register/$', MyRegistrationView.as_view(), name='registration_register'), 
    #url(r'^accounts/register/$', views.register, name='registration'), 
    url(r'^accounts/', include('registration.backends.simple.urls')), 
    url(r'^admin/', admin.site.urls), 
    url(r'^media/(?P<path>.*)$', serve, {'document_root': settings.MEDIA_ROOT}), 
] 

這是我在HTML文件中:

src="{% static 'user.userprofile.picture.url' %}" 

這是我的表我試圖找回從圖片: Database screenshot

我不知道如何得到它的顯示,我想我的URL映射是正確的,因爲我可以,如果我查看圖像去http://127.0.0.1:8000/media/profile_images/trump.jpg

任何想法?對不起,我有點不高興。

回答

0

FileField上傳到媒體端的東西,不是靜態的,所以你只需要做;

<img src="{{ user.userprofile.picture.url }}" alt="" /> 

下面是這種情況的一個例子; https://www.simplifiedpython.net/django-file-upload-tutorial/

+0

謝謝你的工作!我試圖用這些%做,但沒有工作..你的雙托架工作 –

+0

好吧,太棒了!那麼你能接受我的答案嗎? –