Python生成并下載文件后端代碼實(shí)例
txt文件
生成并下載txt文件:
@app.route('/download', methods=['GET'])
def download():
content = "long text"
response = make_response(content)
response.headers["Content-Disposition"] = "attachment;
filename=myfilename.txt"
return response
運(yùn)行app.py后,在瀏覽器中輸入:http://127.0.0.1:5000/download,直接下載txt文件。
excel 文件
生成并下載excel 文件:
@app.route("/export",methods = ['GET'])
def export():
out = BytesIO()
workbook = xlsxwriter.Workbook(out)
table = workbook.add_worksheet()
table.write(0, 0, "第1列")
table.write(0, 1, "第2列")
table.write(0, 2, "第3列")
table.write(0, 0, "name")
table.write(1, 1, "sex")
table.write(2, 2, "class")
workbook.close()
out.seek(0)
filename = quote("Entity類(lèi)下載.xlsx")
rv = send_file(out, as_attachment=True, attachment_filename=filename)
rv.headers['Content-Disposition'] += "; filename*=utf-8''{}".format(filename)
return rv
運(yùn)行app.py后,在瀏覽器中輸入:http://127.0.0.1:5000/export,可以直接下載excel文件。
前后端分離時(shí),接口返回時(shí)要注意headers
def exportExcel():
workbook = xlwt.Workbook(encoding='utf-8')
wSheet = workbook.add_sheet("Plan")
titleFont = xlwt.Font()
f = BytesIO()
workbook.save(f)
f.seek(0)
filename = quote(saveFile) # 將單個(gè)字符串編碼轉(zhuǎn)化為 %xx%xx 的形式
rv = send_file(f, as_attachment=True, attachment_filename=filename)
rv.headers['Content-Disposition'] += "; filename*=utf-8''{}".format(filename)
rv.headers['Cache-Control'] = 'no-store' # 重點(diǎn)在這句?。。。。。。。。。。。。。。。。?
return rv
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
Python開(kāi)發(fā)之pip安裝及使用方法詳解
這篇文章主要介紹了Python開(kāi)發(fā)之pip安裝及使用方法詳解,需要的朋友可以參考下2020-02-02
python selenium對(duì)應(yīng)的瀏覽器chromedriver版本不一致問(wèn)題
這篇文章主要介紹了python selenium對(duì)應(yīng)的瀏覽器chromedriver版本不一致問(wèn)題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2023-08-08
Python實(shí)戰(zhàn)使用XPath采集數(shù)據(jù)示例解析
這篇文章主要為大家介紹了Python實(shí)戰(zhàn)之使用XPath采集數(shù)據(jù)實(shí)現(xiàn)示例解析,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪<BR>2023-04-04
PyQt5通過(guò)信號(hào)實(shí)現(xiàn)MVC的示例
這篇文章主要介紹了PyQt5通過(guò)信號(hào)實(shí)現(xiàn)MVC的示例,幫助大家更好的理解和使用pyqt5,感興趣的朋友可以了解下2021-02-02
Python編程學(xué)習(xí)之如何判斷3個(gè)數(shù)的大小
這篇文章主要給大家介紹了關(guān)于Python編程學(xué)習(xí)之如何判斷3個(gè)數(shù)的大小的相關(guān)資料,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家學(xué)習(xí)或者使用Python具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2019-08-08

