标签: python html flask-sqlalchemy
如何在python flask中使用Delete方法。我的代码段有一些问题,并在加载url http://localhost:8082/api/users/remove_group/5时显示Method Not Allowed。
application
答案 0 :(得分:1)
HTML只支持表单中的GET / POST请求,不是吗?因此,您可能会尝试使用removeGroup中不允许的POST请求访问您的@app.route方法。
removeGroup
POST
@app.route
请参阅: Should PUT and DELETE be used in forms?