您好,登錄后才能下訂單哦!
本文小編為大家詳細(xì)介紹“Django怎么上傳excel表格并將數(shù)據(jù)寫入數(shù)據(jù)庫”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“Django怎么上傳excel表格并將數(shù)據(jù)寫入數(shù)據(jù)庫”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學(xué)習(xí)新知識吧。
將文件上傳到服務(wù)器指定路徑,其實(shí)很簡單,一共有三個步驟:
1.配置 setting.py
# 文件上傳配置 UPLOAD_ROOT = os.path.join(BASE_DIR,'upload')
2.前端代碼如下,使用 <form> 表單提交,"/upload/" 路由配置在 urls 中,這個就不再多說了。
{% extends 'base.html' %} {% block content %} <body> <form id="form" enctype="multipart/form-data" action="/upload/" method="post"> <p><input type="file" name="file"></p> <input type="submit" name="提交"> </form> </body> {% endblock %}
3.后端代碼如下,這段代碼可以上傳任意格式的文件,沒有校驗(yàn)文件類型。
@csrf_exempt def upload(request): # 根name取 file 的值 file = request.FILES.get('file') logger.log().info('uplaod:%s'% file) # 創(chuàng)建upload文件夾 if not os.path.exists(settings.UPLOAD_ROOT): os.makedirs(settings.UPLOAD_ROOT) try: if file is None: return HttpResponse('請選擇要上傳的文件') # 循環(huán)二進(jìn)制寫入 with open(settings.UPLOAD_ROOT + "/" + file.name, 'wb') as f: for i in file.readlines(): f.write(i) except Exception as e: return HttpResponse(e) return HttpResponse('上傳成功')
1.文件上傳結(jié)束后,接下來讀取剛上傳到服務(wù)器的 excel 表格,然后寫入數(shù)據(jù)庫。所以整個后端代碼是這樣的:
# 將excel數(shù)據(jù)寫入mysql def wrdb(filename): # 打開上傳 excel 表格 readboot = xlrd.open_workbook(settings.UPLOAD_ROOT + "/" + filename) sheet = readboot.sheet_by_index(0) #獲取excel的行和列 nrows = sheet.nrows ncols = sheet.ncols print(ncols,nrows) sql = "insert into working_hours (jobnum,name,workingtime,category,project,date,createtime) VALUES" for i in range(1,nrows): row = sheet.row_values(i) jobnum = row[4] name = row[5] workingtime = row[2] category = row[8] project = row[1] date = xldate_as_datetime(row[3],0).strftime('%Y/%m/%d') values = "('%s','%s','%s','%s','%s','%s','%s')"%(jobnum,name,workingtime,category,project,date,datetime.datetime.now()) sql = sql + values +"," # 為了提高運(yùn)行效率,一次性把數(shù)據(jù) insert 進(jìn)數(shù)據(jù)庫 sql = sql[:-1] # 寫入數(shù)據(jù)庫 # DataConnection 是自定義的公共模塊,用的是第三方庫,用來操作數(shù)據(jù)庫。沒有用 ORM ,后續(xù)有 group by 等復(fù)雜 sql 不好操作。 DataConnection.MysqlConnection().insert('work',sql) @csrf_exempt def upload(request): # 根name取 file 的值 file = request.FILES.get('file') print('uplaod:%s'% file) # 創(chuàng)建upload文件夾 if not os.path.exists(settings.UPLOAD_ROOT): os.makedirs(settings.UPLOAD_ROOT) try: if file is None: return HttpResponse('請選擇要上傳的文件') # 循環(huán)二進(jìn)制寫入 with open(settings.UPLOAD_ROOT + "/" + file.name, 'wb') as f: for i in file.readlines(): f.write(i) # 寫入 mysql wrdb(file.name) except Exception as e: return HttpResponse(e) return HttpResponse('導(dǎo)入成功')
2.數(shù)據(jù)導(dǎo)入后,通過一些處理就得到了我們想要的數(shù)據(jù)。報表其中之一的餅圖:
讀到這里,這篇“Django怎么上傳excel表格并將數(shù)據(jù)寫入數(shù)據(jù)庫”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識點(diǎn)還需要大家自己動手實(shí)踐使用過才能領(lǐng)會,如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。