使用Django框架搭建后端服务器,后台接收前端传递过来xlsx的文件,直接将前端传递的文件转化为DataFrame或直接将文件保存。
urls.py
1
2
3
4
5
6
7
8
9
10
11
|
from django.urls import path
from . import views
# 为 URL 名称添加命名空间
app_name = 'report'
urlpatterns = [
# 上传报告
path( '/upload_report/' , views.upload_report, name = 'upload_report' ),
]
|
view.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
def handle_uploaded_file( file , path):
"""
保存上传的文件
:param file: 上传的文件
:param path: 存储路径(包含文件名)
:return:
"""
with open (path, 'wb+' ) as destination:
# 将文件分块
for chunk in file .chunks():
# 写文件
destination.write(chunk)
def upload_report(request):
"""
上传报表
:param request:
:return:
"""
# 获取文件
file = request.FILES.get( 'file' )
# 报告存储路径
path = 'reports/' + file .name
# 1.直接转化为DataFrame
file_df = pandas.read_excel( file )
# 数据处理
# DataFrame保存为xlsx
file_df.to_excel(path, index = False , header = None , float_format = '%.2f' )
# 2。直接保存上传的文件
handle_uploaded_file(request.FILES[ 'file' ], path)
return JsonResponse({ 'reports' : 1 })
|
到此这篇关于Django上传xlsx文件直接转化为DataFrame或直接保存的方法的文章就介绍到这了,更多相关Django上传xlsx保存内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://blog.csdn.net/weixin_42856871/article/details/109254337