我试图按OK键从某些文本字段中获取值,然后通过python操作它们。 我编写了以下代码,但没有在控制台中显示该字段的值。 有人可以帮我吗?
templates / index.html
<form method="POST">
<div class="form-group"><label class="small mb-1" for="Hostname">Nome Host</label>
<input class="form-control py-4" id="Hostname" type="text" placeholder="Localhost" />
</div>
<div class="form-group mt-4 mb-0">
<a class="btn btn-primary btn-block" id="accept" href="/">Conferma</a>
</div>
</form>
app.py
from dominate.tags import form
from flask import Flask, render_template, request
app = Flask(__name__)
@app.route("/")
def index():
if request.method == "POST":
text = request.form['Hostname']
print(text)
return render_template('index.html')
if __name__ == '__main__':
app.run()