我有一个django博客应用程序,其中在发布博客时,还可以附加并提交文件。
这是views.py代码:
def user_own_blog(request):
if request.method == 'POST' and request.FILES['blog_document']:
title_b = request.POST.get('blog_title')
content_b = request.POST.get('blog_content')
file1 = request.FILES['blog_document']
fs = FileSystemStorage()
document_name = fs.save(file1.name, file1)
uploaded_document_url = fs.url(document_name)
b = Blog(title=title_b, content=content_b, blog_document=uploaded_document_url)
b.save()
return render(request, 'mysite/portfolio.html')
else:
return render(request, 'mysite/blog.html')
这是MEDIA_ROOT和MEDIA_URL路径名:
STATIC_URL = '/static/'
MEDIA_URL = '/media/'
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
以下是mysite应用程序中urls.py的代码:
urlpatterns=[ .....
......
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
这是项目结构,其中我需要媒体文件夹直接存在于Assignment1项目下
文件成功上传后,在/ api中显示如下。
但是创建了两个媒体路径:/ media / media,如下所示: 我找不到我可能创建的重复字段
然后单击文件链接:出现404 not found错误。 我认为MEDIA_ROOT文件名不正确。
请帮助!提前致谢。
blog.html的HTML代码:
{% extends 'mysite/base.html' %}
{% load static %}
{% block content %}
<div class="container">
<div class="row">
<div class="col-sm-6 mx-auto" style="margin-top: 70px">
<form action="{% url 'user_own_blog' %}" method="POST" enctype="multipart/form-data">
{% csrf_token %}
<div class="form-group row">
<label for="example-email-input" class="col-2 col-form-label">Title</label>
<div class="col-10">
<input name = "blog_title" class="form-control" type="text">
</div>
</div>
<div class="form-group row">
<label for="example-email-input" class="col-2 col-form-label">Content</label>
<div class="col-10">
<textarea name = "blog_content" class="form-control" rows = "5" cols = "50" type="text"> </textarea>
</div>
</div>
<div class="form-group row">
<label for="example-email-input" class="col-2 col-form-label">Upload File</label>
<div class="col-10">
<input name = "blog_document" class="form-control" type="file">
</div>
</div>
<div class="pull-right">
<button type="submit" class="btn btn-primary float-right">Post</button>
</div>
</form>
</div>
</div>
</div>
{% endblock %}
答案 0 :(得分:1)
如果您已将此文件添加到settings.py
文件中
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
MEDIA_URL = '/media/'
仍然出现404错误,那可能是因为您还必须在主urls.py
中添加media_url
from django.conf import settings
from django.conf.urls.static import static
urlpatterns = [
# ... the rest of your URLconf goes here ...
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
这是您可以添加它的方式。如果您想了解更多详细信息,请阅读this article
答案 1 :(得分:0)
如果要在根目录中找到上载的文件位置:
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
MEDIA_URL = '/media/'
其他:
MEDIA_URL = '/media/'
MEDIA_ROOT = 'C:/Users/xyz/Assignment1/mysite/media/' #if windows pay attention to the slashes
也请遵循以下网址格式:
if settings.DEBUG:
urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
编辑:我认为问题不在于媒体文件夹,而在于您保存和检索文档的方式。下面,我将放置正确上传和检索所需的部分。
models.py
blog_document= models.FileField()
views.py
def user_own_blog(request):
if request.method == 'POST' and request.FILES:
form = BlogForm(request.POST,
request.FILES)
blog = Blog()
if form.is_valid():
blog.title_b = form.cleaned_Data['title']
blog.content_b = form.cleaned_Data['content']
blog.file = form.cleaned_Data['blog_document']
blog.save()
return HttpRequestRedirect(reverse('portfolio'))
else:
form = BlogForm()
return render(request,
'mysite/blog.html',
{'form': form})
要检索上传文件的网址,请使用默认方法.url
。您只需将查询传递到模板(Modelname.objects.filter(title__iexact='something')
)
{{ query.file.url}}
注意:您需要在forms.py中创建一个表单(如果不必创建一个表单)。并使用cleaned_data方法从表单中检索值。对此进行研究。