嗨,我不知道为什么,但是我无法显示数据库中的图像。我认为这是由于模板中的路径所致。
我的模特:
class Article(models.Model):
titre = models.CharField(max_length=200)
auteur = models.CharField(max_length=200)
pub_date = models.DateTimeField('date de publication')
numero = models.CharField(max_length=200)
categorie = models.CharField(max_length=200, default="culture")
contenu = models.CharField(max_length=200000)
image = models.ImageField(upload_to='image_publie', blank=True, null=True)
def __str__(self):
return self.titre
def was_published_recently(self):
return self.pub_date >= timezone.now() -datetime.timedelta(days=7)
我的观点:
def detail(request, article_id):
article = get_object_or_404(Article, pk=article_id)
return render(request, 'gazette/detail.html', {'article':article})
我的网址:
path('<int:article_id>/', views.detail, name='detail'),
设置:
STATIC_URL = '/static/'
MEDIA_URL = '/images/'
MEDIA_ROOT = os_path.join(BASE_DIR, 'images/')
STATICFILES_DIRS = [
os.path.join(BASE_DIR, 'static'),
]
我的模板:
{% extends "base.html" %}
{% load static %}
{% block content %}
<h1>{{ article.contenu }}</h1>
<ul>
{% if article.image %}
<img src="{{article.image.url}}" alt="{{article.titre}}" style="width: 200px; height: 200px;">
{% endif %}
</ul>
{% endblock %}
答案 0 :(得分:1)
在urls.py
之后将其添加到您的urlpatterns
from django.conf import settings
if settings.DEBUG:
from django.conf.urls.static import static
urlpatterns += static(settings.MEDIA_URL,document_root=settings.MEDIA_ROOT)
答案 1 :(得分:-1)
我认为您应该在文件名前使用MEDIA_ROOT。因为它具有从根到所有媒体文件的完整路径
MEDIA_ROOT + '/' + str(article.image)
希望这会有所帮助