gpt4 book ai didi

javascript - 在 Web 应用程序上按下按钮时下载文件?

转载 作者:行者123 更新时间:2023-12-01 01:32:19 25 4
gpt4 key购买 nike

我正在使用 python 和 Flask 构建一个网络应用程序。我在 Web 应用程序上实现了一个按钮,该按钮调用 python 后端中的方法并生成一个 .txt 文件,该文件保存在当前目录中(当前的 .html 和 .py 文件存储在其中)。一旦该方法完成运行并生成 .txt 文件,我希望能够提示用户将 .txt 文件保存在本地计算机上(就像按“另存为...”时出现的 Windows 提示一样) “在网页上)。

这是网络应用程序的简化版本

测试.py

from flask import Flask, render_template, flash, request, redirect, url_for
import pandas as pd
# User Interface of the Web App
# App config.
DEBUG = True
app = Flask(__name__)
app.config.from_object(__name__)
app.config['SECRET_KEY'] = '123455677889900'



@app.route("/", methods=['GET', 'POST'])
def predict():
if 'submit_test' in request.form:
list = []
for i in range(0, 100):
list.append(i)

list_df = pd.DataFrame(list)
list_df.to_csv('test.txt', sep=',',index=False)
return render_template('test.html')


if __name__ == "__main__":
method_name = "main"

app.run()

测试.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Model</title>
<link rel="stylesheet" media="screen" href ="static/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="static/bootstrap/css/bootstrap-theme.min.css">
<meta name="viewport" content = "width=device-width, initial-scale=1.0">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>

</head>
<body>


<div class="container">

<h1>Model</h1>
<br>
<form action="" method="post" role="form">
<div class="row">
<div class="col-12 col-md-6">
<button name="submit_test", type="submit" class="btn btn-success" id="submit_test">Submit</button>
</div>
</div>

</form>
<a href="directory\test.txt" download="test"><button type=button">My Button</button></a>
</div>
</body>
<br>
</html>

最佳答案

您可以将表单重定向到不同的 Flask url 并从 Flask 返回下载。

@app.route('/uploads/<path:filename>', methods=['GET', 'POST'])
def download(filename):
return send_from_directory(directory=os.getcwd()+"/files", filename="filename.txt")

关于javascript - 在 Web 应用程序上按下按钮时下载文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53160441/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com