问题描述
您的表单将提交给/
路由方法,/template
除非这是一个错字,否则应调整表单的action
属性以指向template
视图:action="{{
url_for('template') }}"
解决方法
我刚刚开始学习Flask,并且我正在尝试创建一种允许 POST 方法的表单。
这是我的方法:
@app.route('/template',methods=['GET','POST'])
def template():
if request.method == 'POST':
return("Hello")
return render_template('index.html')
而我的index.html
:
<html>
<head>
<title> Title </title>
</head>
<body>
Enter Python to execute:
<form action="/" method="post">
<input type="text" name="expression" />
<input type="submit" value="Execute" />
</form>
</body>
</html>
加载表单(在收到 GET 时将其呈现)可以正常工作。但是,当我单击“ 提交” 按钮时,出现一个POST 405 error Method
Not Allowed
。
为什么不显示 “ Hello” ?