基本使用
#设置cookie值 @app.route('/set_cookie') def set_cookie(): response = make_response("set_cookie") response.set_cookie("name","zhangsan") response.set_cookie("age","13",10) #10秒有效期 return response #获取cookie @app.route('/get_cookie') def get_cookie(): #获取cookie,可以根据cookie的内容来推荐商品信息 # name = request.cookies['haha'] name = request.cookies.get('name') age = request.cookies.get('age') return "获取cookie,name is %s, age is %s"%(name,age) #设置SECRET_KEY app.config["SECRET_KEY"] = "fhdk^fk#djefkj&*&*&" #设置session @app.route('/set_session/<path:name>') def set_session(name): session["name"] = name session["age"] = "13" return "set session" #获取session内容 @app.route('/get_session') def get_session(): name = session.get('name') age = session.get('age') return "name is %s, age is %s"%(name,age)
session的存储依赖于cookie,在cookie保存的session编号
session编号生成,需要进行加密,所以需要设置secret_key secret_key的作用参考:
https://segmentfault.com/q/1010000007295395
上下文:保存的一些配置信息,比如程序名、数据库连接、应用信息等
相当于一个容器,保存了 Flask 程序运行过程中的一些信息。
Flask中有两种:请求上下文(session,cookie),应用上下文(current_app,g)
current_app,g是全局变量:
current_app.test_value='value'
g.name='abc' # g是一个响应里的全局变量可跨文件
渲染模板:
from flask import Flask,render_template app = Flask(__name__) #默认省略了三个参数,static_url_path, static_folder, template_folders def adds(a,b): return a+b @app.route('/') def hello_world(): #定义数据,整数,字符串,元祖,列表,字典,函数 num = 10 str = "hello" tuple = (1,2,3,4) list = [5,6,7,8] dict = { "name":"张三", "age":13 } return render_template('file01.html',my_num=num,my_str=str,my_tuple=tuple,my_list=list,my_dict=dict,adds=adds) 《html》 {{}},{{dict[‘name']}},{{dict.get(‘name')}}和{%%},{{adds(1,2)}} # 模板全局--直接使用 @app.template_global('adds') def adds(a,b): return a+b
过滤器&自定义过滤器
{{ 字符串 | 字符串过滤器 }} Safe,lower,upper,little,reverse,format {#防止转义#} {{ str1 | safe}} 或 在方法里str2 = Markup("<b>只有学习才能让我快乐</b>") {{ 列表 | 列表过滤器 }} First,last,length,sum,sort
def do_listreverse(li): # 通过原列表创建一个新列表 temp_li = list(li) # 将新列表进行返转 temp_li.reverse() return temp_li app.add_template_filter(do_listreverse,'lireverse') # 或1 @app.template_filter('lireverse') # 或2 def do_listreverse(li): # 通过原列表创建一个新列表 temp_li = list(li) # 将新列表进行返转 temp_li.reverse() return temp_li
<h2>my_array 原内容:{{ my_array }}</h2> <h2> my_array 反转:{{ my_array | lireverse }}</h2>
宏、继承、包含
宏 {% macro input(name,value='',type='text') %} <input type="{{type}}" name="{{name}}" value="{{value}}"> {% endmacro %} {{ input('name',value='zs')}} // 调用 继承 父模板base: {% block top %} 顶部菜单 {% endblock top %} 子模板: {% extends 'base.html' %} {% block content %} 需要填充的内容 {% endblock content %} 包含 {% include 'hello.html' %} Flask 的模板中特有变量和方法 {{config.DEBUG}} 输出:True {{request.url}} 输出:http://127.0.0.1 {{ g.name }} {{url_for('home')}} // url_for 会根据传入的路由器函数名,返回该路由对应的URL {{ url_for('post', post_id=1)}} 这个函数会返回之前在flask中通过flask()传入的消息的列表,flash函数的作用很简单,可以把由Python字符串表示的消息加入一个消息队列中,再使用get_flashed_message()函数取出它们并消费掉 {%for message in get_flashed_messages()%} {{message}} {%endfor%} 模板规则: <form action="{{ url_for('login') }}" method="post"> <link rel="stylesheet" href="{{ url_for('static',filename='css.css') }}" rel="external nofollow" >
web表单
if request.method == 'POST': # post请求的数据 print(request.form.get('uname')) print(request.form.get('upass')) # 存session return redirect("/") # get请求的数据 print(request.args.get('uname')) print(request.args.get('upass')) # post请求的数据 print(request.form.get('uname')) print(request.form.get('upass'))
CSRF
from flask_wtf import CSRFProtect #设置SECRET_KEY app.config["SECRET_KEY"] = "fjkdjfkdfjdk" #保护应用程序 CSRFProtect(app)
{#设置隐藏的csrf_token,使用了CSRFProtect保护app之后,即可使用csrf_token()方法#} <input type="hidden" name="csrf_token" value="{{ csrf_token() }}">
希望以上整理的内容能够帮助到大家,感谢大家对小牛知识库的支持。
本文向大家介绍python Web flask 视图内容和模板实现代码,包括了python Web flask 视图内容和模板实现代码的使用技巧和注意事项,需要的朋友参考一下 这篇文章主要介绍了python Web flask 视图内容和模板实现代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下 基本使用 session的存储依赖于cookie,
模板引擎适合于动态 HTML 页面输出或者代码生成,在Web开发中是常见的 装备。 Blade内置了简单的模板引擎,为了应付网页渲染和简单的数据传输。在日常开发中, 我们通常使用一些优秀的、高效的、功能较为完善的模板引擎,诸如 Velocity、Freemarker、JetbrickTemplate 等等。 Blade支持扩展任意一款模板引擎,同时也有多个实现了,在 这里,也欢迎你贡献代码。 默认
CabalPHP的模板引擎是 league/plates,相关语法请参考 plates 的文档。 获取模板引擎 要使用 plates 请先修改 usr/boot.php,取消 Boot 类中的 use Cabal\Core\Http\Server\HasPlates 注释: class Boot extends Cabal\Core\Application\Boot { //...
本文向大家介绍python中HTMLParser模块知识点总结,包括了python中HTMLParser模块知识点总结的使用技巧和注意事项,需要的朋友参考一下 本章内容,我们主要来讲一下Python内置的HTML解析库HTMLParser模块,基本上也是应用于页面抓取上,假设,我们需要去收集页面上已存在的静态链接,但是页面肯定代码量都非常大,并且页面也很多,这样看来,会比较麻烦,工作量也非常大,这
本文向大家介绍python中re模块知识点总结,包括了python中re模块知识点总结的使用技巧和注意事项,需要的朋友参考一下 一、什么是正则表达式? 正则表达式,又称规则表达式,通常被用来检索、替换那些符合某个模式(规则)的文本。 正则表达式是对字符串操作的一种逻辑公式,就是用事先定义好的一些特定字符、及这些特定字符的组合,组成一个“规则字符串”,这个“规则字符串”用来表达对字符串的一种过滤逻辑
问题内容: 使用.NET Razor视图和AngularJS时的最佳做法是什么? 语境 我们正在使用带有剃须刀的mvc4 开发一个 公共网站 (而不是Intranet应用程序),并且我们对客户端脚本不是很熟悉,因此我们从知道的内容开始:jQuery。但是现在事情变得更加复杂了,我们想切换到AngularJS。 在.NET部分,我们使用Razor模板和(加上一些自定义模板)呈现正确的html“控件”