使用Django框架搭建后端服務(wù)器,后臺接收前端傳遞過來xlsx的文件,直接將前端傳遞的文件轉(zhuǎn)化為DataFrame或直接將文件保存。
urls.py
from django.urls import path
from . import views
# 為 URL 名稱添加命名空間
app_name = 'report'
urlpatterns = [
# 上傳報告
path('/upload_report/', views.upload_report, name='upload_report'),
]
view.py
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.直接轉(zhuǎn)化為DataFrame
file_df = pandas.read_excel(file)
# 數(shù)據(jù)處理
# 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})
到此這篇關(guān)于Django上傳xlsx文件直接轉(zhuǎn)化為DataFrame或直接保存的方法的文章就介紹到這了,更多相關(guān)Django上傳xlsx保存內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- PIL對上傳到Django的圖片進行處理并保存的實例
- django多文件上傳,form提交,多對多外鍵保存的實例
- 利用django如何解析用戶上傳的excel文件