Flask路由支持get和post方法 作者:马育民 • 2019-08-21 09:11 • 阅读:10272 ### 默认方式 ``` @app.route('/') def index(): return 'Hello, World!' ``` 像上面这种方式配置路由,默认支持OPTIONS, GET, HEAD请求方法,并不支持POST方法 ### 让路由支持get和post方法 ``` @app.route('/',methods=['GET','POST']) def index(): return 'Hello, World!' ``` 原文出处:http://malaoshi.top/show_1EF3v792Xx6u.html