Django中文件上传和文件访问微项目的方法
作者:nykingkun 时间:2021-04-15 10:44:45
Django中上传文件方式。
如何实现文件上传功能?
1创建项目uploadfile:
创建app:front
项目设置INSTALLED_APPS中添加'front'
INSTALLED_APPS = [
'''
'front'
]
#后面添加MEDIA_ROOT和MEDIA_URL
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR,'static')
MEDIA_ROOT = os.path.join(BASE_DIR,'media')
MEDIA_URL = '/media/'
2.models,views都写用front文件夹里面。
modes.py创建代码。
class Article(models.Model):
'''创建个文章表格,测试上传文件'''
title = models.CharField(max_length=100,unique=True)
content = models.CharField(max_length=100)
articlefile = models.FileField(upload_to='%Y/%m/%d',unique=True)
#这里upload_to='%Y/%m/%d'可以先不设置,设置的目的是上传文件保存在media目录下时,自动创建以时间为标记文件层次文件夹目录
使用命令
makemigrations,和migrates进行迁移
打开db.sqlite3可以看到迁移成功后的数据表front_article
数据库中有article表,说明迁移成功。
3.写视图
from django.shortcuts import render,HttpResponse
from django.views.generic import View
from .models import Article
# Create your views here.
class UploadFile(View):
def get(self,request):
contents = Article.objects.all()
return render(request,'index.html',locals())
def post(self,request):
title = request.POST.get('title')
content = request.POST.get('content')
file = request.FILES.get('myfile')
Article.objects.create(title=title,content=content,articlefile=file)
return HttpResponse("成功")
这里使用类视图
4创建index模板。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
{% for content in contents %}
<li>标题:{{ content.title }}</li>
<li>内容:{{ content.content }}</li>
<a href="{% url 'index' %}media/{{ content.articlefile }}" rel="external nofollow" ><li>{{ content.articlefile }}</li></a>
{% endfor %}
{#for循环主要显示数据图中数据。有标题,有内容和文件链接#}
<form action="" method="post" enctype="multipart/form-data" >
<input type="text" name="title" >
<input type="text" name="content">
<input type="file" name="myfile" >
<input type="submit" value="提交">
</form>
</body>
</html>
显示效果如下:
5关键性一步
urls.py
from django.urls import path
from front import views
from django.conf.urls.static import static
from django.conf import settings
urlpatterns = [
path('',views.UploadFile.as_view(),name='index'),
]+static(settings.MEDIA_URL,document_root=settings.MEDIA_ROOT)
使用static(settings.MEDIA_URL,document_root=settings.MEDIA_ROOT)可以直接访问文件。非常方便。
来源:https://blog.csdn.net/weixin_43978915/article/details/105775031
标签:django,上传文件
0
投稿
猜你喜欢
mysql SQL语句积累
2024-01-13 06:18:45
常见数据库系统比较 Oracle数据库
2024-01-26 04:18:57
详解GaussDB for MySQL性能优化
2024-01-25 15:10:18
基于pdf2docx模块Python实现批量将PDF转Word文档的完整代码教程
2022-06-24 15:55:02
GPU状态监测 nvidia-smi 命令的用法详解
2022-08-28 20:57:37
[图文]三分钟学会Sql Server的复制功能
2024-01-25 10:47:51
Django如何与Ajax交互
2023-05-09 12:53:11
利用Python分析一下最近的股票市场
2023-06-14 23:46:03
PHP实现的AES双向加密解密功能示例【128位】
2023-09-30 14:52:51
js实现的捐赠管理完整实例
2023-08-22 05:25:14
深入理解Java线程编程中的阻塞队列容器
2024-05-13 10:37:58
Python的数据类型与标识符和判断语句详解
2021-04-11 13:18:15
python读取图片任意范围区域
2023-07-16 06:26:21
javaScript让文本框内的最后一个文字的后面获得焦点实现代码
2024-04-16 08:57:55
python禁用键鼠与提权代码实例
2022-12-11 11:54:59
Python手绘可视化工具cutecharts使用实例
2022-12-25 07:27:54
PHP count()函数讲解
2023-06-04 11:46:41
PHP原型模式Prototype Pattern的使用介绍
2023-05-25 01:21:04
如何在MySQL数据库中使用XML数据
2009-12-29 10:48:00
Python运行报错UnicodeDecodeError的解决方法
2022-03-21 17:21:40