国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術文章
文章詳情頁

Python生成并下載文件后端代碼實例

瀏覽:32日期:2022-07-12 18:00:52

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

運行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類下載.xlsx') rv = send_file(out, as_attachment=True, attachment_filename=filename) rv.headers[’Content-Disposition’] += '; filename*=utf-8’’{}'.format(filename) return rv

運行app.py后,在瀏覽器中輸入:http://127.0.0.1:5000/export,可以直接下載excel文件。

前后端分離時,接口返回時要注意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) # 將單個字符串編碼轉化為 %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’ # 重點在這句!!!!!!!!!!!!!!!!! return rv

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網。

標簽: Python 編程
相關文章:
主站蜘蛛池模板: 绥滨县| 博白县| 福贡县| 西吉县| 集贤县| 东安县| 肇东市| 全州县| 洛宁县| 洪湖市| 清徐县| 葫芦岛市| 涿鹿县| 木兰县| 西宁市| 新巴尔虎右旗| 渝中区| 鹤岗市| 贺州市| 奈曼旗| 泰和县| 邹平县| 叶城县| 兰西县| 宿迁市| 辉县市| 惠安县| 阿拉善右旗| 南丹县| 上犹县| 长兴县| 富锦市| 花莲县| 津市市| 孟津县| 那曲县| 东台市| 郑州市| 甘孜| 清徐县| 周口市|