Django媒体文件未加载

时间:2019-06-28 08:31:50

标签: python django django-models django-media

我有一个users应用,profile是在其models.py中创建的模型。image存在于/media/profile_pics/中,但即使给出完整的src中的路径未加载。我不知道为什么。在下面添加相关文件。

  

models.py

from django.contrib.auth.models import User

from django.db import models
from django.contrib.auth.models import AbstractUser


class profile(models.Model):
    user = models.OneToOneField(User, on_delete=models.CASCADE)
    image = models.ImageField(default='media/default.jpg', upload_to='profile_pics')


def __str__(self):
    return f'{self.user.username} Profile'
  

profile.html

<!DOCTYPE html>

{% extends 'base2.html' %}
{% load crispy_forms_tags %}
{% load static %}


<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>profile</title>
</head>
{% block content %}
<body style="margin-left: 300px">
<div class="content-section">
    <div class="media">
        <img class="rounded-circle account-img" src="{{ user.profile.image.url }}">
        <img class="rounded-circle account-img" src="E:\py-projects\hello-world\media\profile_pics\profile1.png">

    </div>
</div>

</body>
{% endblock %}

</html>
  

settings.py

STATIC_URL = '/static/'

MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
MEDIA_URL = '/media/'
print(MEDIA_ROOT)

STATICFILES_DIRS = [
os.path.join(BASE_DIR, "static"),

]
  

urls.py(不是应用程序users的主要urls.py)

from django.contrib import admin
from django.urls import path, include
from users.views import profile
from django.conf import settings
from django.conf.urls.static import static

urlpatterns = [
    path('admin/', admin.site.urls),
    path('', include('users.urls'), name='index'),
    path('profile/', profile, name='profile'),

]

if settings.DEBUG:
    urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)

2 个答案:

答案 0 :(得分:0)

我因为没有看到这个而感到愚蠢:|必须添加它。

urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)

答案 1 :(得分:0)

在您的urls.py中使用它

from django.conf.urls import url
from django.conf import settings
from django.views.static import serve


urlpatterns = [
    url(r'^media/(?P<path>.*)$', serve, {'document_root': 
        settings.MEDIA_ROOT}),
    url(r'^static/(?P<path>.*)$', serve, {'document_root': 
        settings.STATIC_ROOT}),
]

然后在您的settings.py

STATIC_ROOT = os.path.join(BASE_DIR, 'static/')
STATIC_URL = '/static/'
MEDIA_ROOT = os.path.join(BASE_DIR, 'media/')
MEDIA_URL = '/media/'