亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python中Web flask視圖內容和模板怎么實現

發布時間:2021-08-07 09:45:09 來源:億速云 閱讀:132 作者:小新 欄目:開發技術

這篇文章主要為大家展示了“python中Web flask視圖內容和模板怎么實現”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“python中Web flask視圖內容和模板怎么實現”這篇文章吧。

基本使用

#
設置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
<h3>my_array 原內容:{{ my_array }}</h3>
<h3> my_array 反轉:{{ my_array | lireverse }}</h3>

宏、繼承、包含

宏
{% 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視圖內容和模板怎么實現”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

科尔| 武义县| 宣汉县| 西和县| 新绛县| 淳化县| 林州市| 浦江县| 普宁市| 安泽县| 商丘市| 河西区| 太湖县| 彰化市| 吴桥县| 张家港市| 宜良县| 韩城市| 民和| 万全县| 怀柔区| 武清区| 乌海市| 泊头市| 抚宁县| 宜川县| 云梦县| 聊城市| 射阳县| 会宁县| 宜君县| 海阳市| 清河县| 濮阳县| 阿勒泰市| 遂宁市| 稷山县| 柳州市| 甘孜| 乌拉特前旗| 烟台市|