Flask是一个基于Python开发并且依赖jinja2模板和Werkzeug WSGI服务的一个微型框架,对于Werkzeug本质是Socket服务端,其用于接收http请求并对请求进行预处理,然后触发Flask框架,开发人员基于Flask框架提供的功能对请求进行相应的处理,并返回给用户,如果要返回给用户复杂的内容时,需要借助jinja2模板来实现对模板的处理,即:将模板和数据进行渲染,将渲染后的字符串返回给用户浏览器。
“微”(micro) 并不表示你需要把整个 Web 应用塞进单个 Python 文件(虽然确实可以 ),也不意味着 Flask 在功能上有所欠缺。微框架中的“微”意味着 Flask 旨在保持核心简单而易于扩展。Flask 不会替你做出太多决策——比如使用何种数据库。而那些 Flask 所选择的——比如使用何种模板引擎——则很容易替换。除此之外的一切都由可由你掌握。如此,Flask 可以与您珠联璧合。
默认情况下,Flask 不包含数据库抽象层、表单验证,或是其它任何已有多种库可以胜任的功能。然而,Flask 支持用扩展来给应用添加这些功能,如同是 Flask 本身实现的一样。众多的扩展提供了数据库集成、表单验证、上传处理、各种各样的开放认证技术等功能。Flask 也许是“微小”的,但它已准备好在需求繁杂的生产环境中投入使用。
1
|
pip3 install flask |
from werkzeug.wrappers import Request, Response
@Request.application
def hello(request):
return Response(‘Hello World!‘)
if __name__ == ‘__main__‘:
from werkzeug.serving import run_simple
run_simple(‘localhost‘, 4000, hello)
一. 基本使用
1
2
3
4
5
6
7
8
9
|
from flask import Flask app = Flask(__name__) @app .route( ‘/‘ ) def hello_world(): return ‘Hello World!‘ if __name__ = = ‘__main__‘ : app.run() |
二、配置文件
三、路由系统
- @app.route(‘/user/<username>‘)
- @app.route(‘/post/<int:post_id>‘)
- @app.route(‘/post/<float:post_id>‘)
- @app.route(‘/post/<path:path>‘)
- @app.route(‘/login‘, methods=[‘GET‘, ‘POST‘])
常用路由系统有以上五种,所有的路由系统都是基于一下对应关系来处理:
1
2
3
4
5
6
7
8
9
|
DEFAULT_CONVERTERS = { ‘default‘ : UnicodeConverter, ‘string‘ : UnicodeConverter, ‘any‘ : AnyConverter, ‘path‘ : PathConverter, ‘int‘ : IntegerConverter, ‘float‘ : FloatConverter, ‘uuid‘ : UUIDConverter, } |
def auth(func):
def inner(*args, **kwargs):
print(‘before‘)
result = func(*args, **kwargs)
print(‘after‘)
return result
return inner
@app.route(‘/index.html‘,methods=[‘GET‘,‘POST‘],endpoint=‘index‘)
@auth
def index():
return ‘Index‘
或
def index():
return "Index"
self.add_url_rule(rule=‘/index.html‘, endpoint="index", view_func=index, methods=["GET","POST"])
or
app.add_url_rule(rule=‘/index.html‘, endpoint="index", view_func=index, methods=["GET","POST"])
app.view_functions[‘index‘] = index
或
def auth(func):
def inner(*args, **kwargs):
print(‘before‘)
result = func(*args, **kwargs)
print(‘after‘)
return result
return inner
class IndexView(views.View):
methods = [‘GET‘]
decorators = [auth, ]
def dispatch_request(self):
print(‘Index‘)
return ‘Index!‘
app.add_url_rule(‘/index‘, view_func=IndexView.as_view(name=‘index‘)) # name=endpoint
或
class IndexView(views.MethodView):
methods = [‘GET‘]
decorators = [auth, ]
def get(self):
return ‘Index.GET‘
def post(self):
return ‘Index.POST‘
app.add_url_rule(‘/index‘, view_func=IndexView.as_view(name=‘index‘)) # name=endpoint
@app.route和app.add_url_rule参数:
rule, URL规则
view_func, 视图函数名称
defaults=None, 默认值,当URL中无参数,函数需要参数时,使用defaults={‘k‘:‘v‘}为函数提供参数
endpoint=None, 名称,用于反向生成URL,即: url_for(‘名称‘)
methods=None, 允许的请求方式,如:["GET",