中文文档: http://docs.jinkan.org/docs/flask/
英文文档: http://flask.pocoo.org/docs/0.11/
学习flask的一个很好的网站:http://www.pythondoc.com/flask-mega-tutorial/helloworld.html
flask的一个中文网站:http://flask123.sinaapp.com/category/flask-projects/ 里面还介绍了好多基于flask的开源项目
http://python.jobbole.com/84003/
https://dormousehole.readthedocs.io/en/latest/
https://flask-cn.readthedocs.io/en/latest/tutorial/
https://www.cnblogs.com/kendrick/p/6237286.html
=======================
self.paser = reqparse.RequestParser()
中文网站:http://docs.jinkan.org/docs/flask/
扩展:http://flask.pocoo.org/extensions/
====================
通过url_map可以查看整个flask中的路由信息 :print(app.url_map)
当装饰器和请求方式完全相同时,那么执行的是第一个,如果装饰器相同但是请求方式不相同,那么它们将是独立的个体
@app.route("/hello") def hello1(): return "hello 1" @app.route("/hello") def hello2(): return "hello 2"
真正运行的是第一个hello
常用的转换器有int/float/path,我们还可以继承BaseConverter 实现自己的转换器,
BaseConverter中两个常用的重载函数有to_python和to_url