微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Flask-不允许使用POST错误405方法

如何解决Flask-不允许使用POST错误405方法

您的表单将提交给/路由方法/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”

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。