您好我是Django的新手,我正在尝试构建我的个人博客。 在这篇博客中,我希望我的帖子有一个我可以发布图像的字段。 这是我的代码,但是当我看到我的帖子时,图片没有显示。
setting.py 用于mysite项目的Django设置。
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
import os
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'i9s&v1wse3w%gxyc&3qyft-a(cz1y6^f9gvy+rxsypnsozmt7d'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
TEMPLATE_DEBUG = True
ALLOWED_HOSTS = []
# Application definition
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'blog',
)
MIDDLEWARE_CLASSES = (
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
)
ROOT_URLCONF = 'mysite.urls'
WSGI_APPLICATION = 'mysite.wsgi.application'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'Europe/Berlin'
USE_I18N = True
USE_L10N = True
USE_TZ = False
STATIC_URL = '/static/'
STATICFILES_DIRS = (
os.path.join(BASE_DIR, "static"),
)
MEDIA_ROOT = (
os.path.join(BASE_DIR, "media")
)
MEDIA_URL = 'media/'
class Post(models.Model):
author = models.ForeignKey('auth.User')
title = models.CharField(max_length=200)
text = models.TextField()
image = models.ImageField(upload_to='media/img')
created_date = models.DateTimeField(
default=timezone.now)
published_date = models.DateTimeField(
blank=True, null=True)
<img src="{{ post.image.url }}" alt="img">
当我访问我的帖子详情网站时,它只显示alt =“img”
views.py
from django.shortcuts import render , get_object_or_404
from django.utils import timezone
from .models import Post
def post_list(request):
posts = Post.objects.filter(published_date__lte=timezone.now()).order_by('published_date')
return render(request, 'blog/post_list.html', {'posts': posts})
def post_detail(request, pk):
post = get_object_or_404(Post, pk=pk)
return render(request, 'blog/post_detail.html', {'post':post})
答案 0 :(得分:1)
默认情况下,Django不提供静态文件或媒体文件,这是一项通常属于服务器的任务,以便在开发过程中(在开发期间应该只在开发期间)获取STATIC或MEDIA文件{{ 1}}文件末尾的某处添加以下内容:
urls.py
Django提供了有关如何设置环境以及如何为静态和媒体提供文件的完整文档: https://docs.djangoproject.com/en/1.7/howto/static-files/
答案 1 :(得分:0)
最后,我得到了你的帮助。
无需使用{{MEDIA_URL}}
只需使用html中的.url
即可。
再次感谢这是我在stackoverflow中的第一个答案
答案 2 :(得分:-1)
您必须在fit
MEDIA_URL
img src
尝试这样的事情
<img src="{{ MEDIA_URL }}{{ post.image.url }}" alt="img">
在此之前,您必须为url
environment.in dev
urls.py
if settings.DEBUG:
urlpatterns = urlpatterns + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
在设置中
MEDIA_URL = '/media/`
MEDIA_ROOT = '/path/to/image/'
修复程序的更新
MEDIA_ROOT = (
BASE_DIR,
)
MEDIA_URL = '/media/'
在html
<img src="{{ MEDIA_URL }}{{ post.image.url }}" alt="img">
在urls.py
from django.conf import settings
from django.conf.urls.static import static
if settings.DEBUG:
urlpatterns = urlpatterns + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
这样就可以了解