摘要:
一、过滤器 safe:禁用转义; <p>{{ '<em>hello</em>' | safe }}</p> capitalize:把变量值的首字母转成大写,其余字母转小写; <p>{{ 'hello' | capitalize }}</p> lower:把值转成小写; <p>{{ 'HELLO' | 阅读全文
摘要:
一、上下文 请求上下文:request与session 应用上下文:current_app与g:一次请求多个函数可以用它传参 二、请求钩子 请求钩子是通过装饰器实现的,flask有四种钩子(hook): before_first_request:在处理第一个请求前运行 before_request: 阅读全文