浏览文章
文章信息
Python Flask报错The method is not allowed for the requested URL.| Method Not Allowed
14691
1、添加允许请求方法
@app.route('/admin/login')改成
@app.route('/admin/login',methods=['GET','POST'])