一个快速的问题,因为我在其他任何地方都找不到。
如果我的输入格式如下:
<input type="image" name="Text" value="text" src="{{ url_for('static', filename='images/icons/General/Post.svg') }}" />
我该如何检索request.form[]
所按下的内容?
出现以下错误:
if request.method == "POST":
if request.form["Text"] == "text":
return render_template("PostText.html")
我知道有一种使用<input type="submit" value="text">
检索数据的类似方法,但不适用于前者。
谢谢!
编辑:固定格式和语法。
TLDR:我无法在python的烧瓶中检测到类型为image
的输入。