我知道有很多这样的问题,我全部阅读并尝试了一切,但没有解决我的问题。
我在Django写博客,当然我想向用户展示图片。
图片存储在/static/users/<username>/<image>
。
我的setting.py
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')]
,
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
'django.core.context_processors.static'
],
},
},
]
WSGI_APPLICATION = 'Travel.wsgi.application'
# Database
# https://docs.djangoproject.com/en/1.9/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}
# Password validation
# https://docs.djangoproject.com/en/1.9/ref/settings/#auth-password-validators
AUTH_PASSWORD_VALIDATORS = [
{
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
},
]
# Internationalization
# https://docs.djangoproject.com/en/1.9/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.9/howto/static-files/
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(os.path.dirname(BASE_DIR), "static")
MEDIA_URL = '/users/'
我在html中有什么
{% load static from staticfiles %}
<img src="{% static comment.author.picture.url %}"
width="70px" height="70px">
以及我在观点中的内容
@login_required
def trip_one(request, pk):
trip = get_object_or_404(Trip, pk=pk)
if request.method == 'POST':
form = CommentForm(request.POST)
if form.is_valid():
cd = form.cleaned_data
user = Person.objects.get_by_natural_key(request.user.get_username())
comment = Comment(text=cd['text'],
author=user,
trip=trip)
comment.trip = trip
comment.save()
comments = trip.comment_set.all()
form = CommentForm()
return render(request, 'TravelBuddy/travel.html', {'trips': trip,
'form': form,
'comments': comments})
我在浏览器中的图像链接看起来像这样
http://127.0.0.1:8000/users/default/default.png
当它们必须看起来像这样
http://127.0.0.1:8000/static/users/default/default.png
我无法在html中将static
添加到网址,因为它不适用于其他网页。
那么,我错过了什么?或者这里有什么问题?
答案 0 :(得分:3)
在这种情况下,您似乎需要引用MEDIA而不是STATIC。
在设置中查看您的MEDIA_ROOT
和MEDIA_URL
,确保它们指向正确的位置。
然后,在您的模板中,您可以通过以下属性获取对象的URL:
<img src="{{ comment.author.picture.url }}" width="70px" height="70px">
有关文档中MEDIA的更多信息:https://docs.djangoproject.com/en/1.9/ref/settings/#std:setting-MEDIA_ROOT
答案 1 :(得分:1)
尝试将MEDIA_URL更改为'/ static / users /'