Django上傳與讀取excel

2021-09-25 09:21:11 字數 1037 閱讀 8523

前端通過formdata傳遞檔案,後端通過 file = request.files.get('filecontent') 與 xlrd.open_workbook讀取

不用form表單

})路由:

# 獲取普通input標籤值,即檔名

filename = request.post.get('filename')

# 獲取file型別的input標籤值,即檔案內容

file = request.files.get('filecontent')

data = xlrd.open_workbook(

filename=none, file_contents=file.read()) # 讀取**

table = data.sheets()[0] # 第一張表單

row = table.nrows

for i in range(1, row): # 跳過第0行

col = table.row_values(i)

# deal_date = col[1]

recieve_account = str(int(col[11]))

recieve_name = col[12]

money = float(col[13])

return jsonresponse()

讀取excel PySpark讀取Excel

日常工作中,客戶通過excel提供資料是一種很常見的方式,既然碰到了就得解決。我常用的辦法就是pandas讀取,並儲存為parquet,如果只讀取乙個sheet,import pandas as pddf pd.read excel excel1.xlsx df.to parquet excel e...

robotFramework 讀取Excel檔案

1 robotframework讀取excel檔案 第一步 先安裝excellibrary 可以直接通過命令安裝 pip install robotframework excellibrary 安裝完成後使用pip list命令檢視是否安裝成功 第二步 安裝完後將excellibrary匯入到rob...

django 檔案上傳

檔案上傳 當django處理上傳乙個檔案的時候,檔案資料被放在request.files中。這個文件解釋檔案怎麼樣被儲存在磁碟上或者記憶體中,怎樣定製預設的行為。基本檔案上傳 考慮乙個包含filefield的簡單的表單 from django import forms class uploadfil...