web框架---Flask

来源:https://www.cnblogs.com/horror/archive/2018/08/24/9494589.html
-Advertisement-
Play Games

Flask Flask是一個基於Python開發並且依賴jinja2模板和Werkzeug WSGI服務的一個微型框架,對於Werkzeug本質是Socket服務端,其用於接收http請求並對請求進行預處理,然後觸發Flask框架,開發人員基於Flask框架提供的功能對請求進行相應的處理,並返回給用 ...


Flask

Flask是一個基於Python開發並且依賴jinja2模板和Werkzeug WSGI服務的一個微型框架,對於Werkzeug本質是Socket服務端,其用於接收http請求並對請求進行預處理,然後觸發Flask框架,開發人員基於Flask框架提供的功能對請求進行相應的處理,並返回給用戶,如果要返回給用戶複雜的內容時,需要藉助jinja2模板來實現對模板的處理,即:將模板和數據進行渲染,將渲染後的字元串返回給用戶瀏覽器。

“微”(micro) 並不表示你需要把整個 Web 應用塞進單個 Python 文件(雖然確實可以 ),也不意味著 Flask 在功能上有所欠缺。微框架中的“微”意味著 Flask 旨在保持核心簡單而易於擴展。Flask 不會替你做出太多決策——比如使用何種資料庫。而那些 Flask 所選擇的——比如使用何種模板引擎——則很容易替換。除此之外的一切都由可由你掌握。如此,Flask 可以與您珠聯璧合。

預設情況下,Flask 不包含資料庫抽象層、表單驗證,或是其它任何已有多種庫可以勝任的功能。然而,Flask 支持用擴展來給應用添加這些功能,如同是 Flask 本身實現的一樣。眾多的擴展提供了資料庫集成、表單驗證、上傳處理、各種各樣的開放認證技術等功能。Flask 也許是“微小”的,但它已準備好在需求繁雜的生產環境中投入使用。

安裝

1 pip install Flask

一、第一次

1 from flask import Flask
2 app = Flask(__name__)
3  
4 @app.route("/")
5 def hello():
6     return "Hello World!"
7  
8 if __name__ == "__main__":
9     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 DEFAULT_CONVERTERS = {
2     'default':          UnicodeConverter,
3     'string':           UnicodeConverter,
4     'any':              AnyConverter,
5     'path':             PathConverter,
6     'int':              IntegerConverter,
7     'float':            FloatConverter,
8     'uuid':             UUIDConverter,
9 }

註:對於Flask預設不支持直接寫正則表達式的路由,不過可以通過自定義來實現,見:https://segmentfault.com/q/1010000000125259

三、模板

1、模板的使用

Flask使用的是Jinja2模板,所以其語法和Django無差別

2、自定義模板方法

Flask中自定義模板方法的方式和Bottle相似,創建一個函數並通過參數的形式傳入render_template,如:

 1 <!DOCTYPE html>
 2 <html>
 3 <head lang="en">
 4     <meta charset="UTF-8">
 5     <title></title>
 6 </head>
 7 <body>
 8     <h1>自定義函數</h1>
 9     {{ww()|safe}}
10 
11 </body>
12 </html>
13 
14 index.html
index.html
 1 #!/usr/bin/env python
 2 # -*- coding:utf-8 -*-
 3 from flask import Flask,render_template
 4 app = Flask(__name__)
 5  
 6  
 7 def wupeiqi():
 8     return '<h1>Wupeiqi</h1>'
 9  
10 @app.route('/login', methods=['GET', 'POST'])
11 def login():
12     return render_template('login.html', ww=wupeiqi)
13  
14 app.run()

四、公共組件

1、請求

對於Http請求,Flask會講請求信息封裝在request中(werkzeug.wrappers.BaseRequest),提供的如下常用方法和欄位以供使用:

 1 request.method
 2 request.args
 3 request.form
 4 request.values
 5 request.files
 6 request.cookies
 7 request.headers
 8 request.path
 9 request.full_path
10 request.script_root
11 request.url
12 request.base_url
13 request.url_root
14 request.host_url
15 request.host
 1 @app.route('/login', methods=['POST', 'GET'])
 2 def login():
 3     error = None
 4     if request.method == 'POST':
 5         if valid_login(request.form['username'],
 6                        request.form['password']):
 7             return log_the_user_in(request.form['username'])
 8         else:
 9             error = 'Invalid username/password'
10     # the code below is executed if the request method
11     # was GET or the credentials were invalid
12     return render_template('login.html', error=error)
13 
14 表單處理Demo
表單處理Demo
 1 from flask import request
 2 from werkzeug import secure_filename
 3 
 4 @app.route('/upload', methods=['GET', 'POST'])
 5 def upload_file():
 6     if request.method == 'POST':
 7         f = request.files['the_file']
 8         f.save('/var/www/uploads/' + secure_filename(f.filename))
 9     ...
10 
11 上傳文件Demo
上傳文件Demo
 1 from flask import request
 2 
 3 @app.route('/setcookie/')
 4 def index():
 5     username = request.cookies.get('username')
 6     # use cookies.get(key) instead of cookies[key] to not get a
 7     # KeyError if the cookie is missing.
 8 
 9 
10 
11 
12 from flask import make_response
13 
14 @app.route('/getcookie')
15 def index():
16     resp = make_response(render_template(...))
17     resp.set_cookie('username', 'the username')
18     return resp
19 
20 Cookie操作
Cookie操作

2、響應

當用戶請求被開發人員的邏輯處理完成之後,會將結果發送給用戶瀏覽器,那麼就需要對請求做出相應的響應。

a.字元串

1 @app.route('/index/', methods=['GET', 'POST'])
2 def index():
3     return "index"

b.模板引擎

1 from flask import Flask,render_template,request
2 app = Flask(__name__)
3  
4 @app.route('/index/', methods=['GET', 'POST'])
5 def index():
6     return render_template("index.html")
7  
8 app.run()

c.重定向

 1 #!/usr/bin/env python
 2 # -*- coding:utf-8 -*-
 3 from flask import Flask, redirect, url_for
 4 app = Flask(__name__)
 5  
 6 @app.route('/index/', methods=['GET', 'POST'])
 7 def index():
 8     # return redirect('/login/')
 9     return redirect(url_for('login'))
10  
11 @app.route('/login/', methods=['GET', 'POST'])
12 def login():
13     return "LOGIN"
14  
15 app.run()

d.錯誤頁面

1 from flask import Flask, abort, render_template
2 app = Flask(__name__)
3 
4 @app.route('/e1/', methods=['GET', 'POST'])
5 def index():
6     abort(404, 'Nothing')
7 app.run()
8 
9 指定URL,簡單錯誤
指定URL,簡單錯誤
 1 from flask import Flask, abort, render_template
 2 app = Flask(__name__)
 3  
 4 @app.route('/index/', methods=['GET', 'POST'])
 5 def index():
 6     return "OK"
 7  
 8 @app.errorhandler(404)
 9 def page_not_found(error):
10     return render_template('page_not_found.html'), 404
11  
12 app.run()

e.設置相應信息

使用make_response可以對相應的內容進行操作

 1 from flask import Flask, abort, render_template,make_response
 2 app = Flask(__name__)
 3  
 4 @app.route('/index/', methods=['GET', 'POST'])
 5 def index():
 6     response = make_response(render_template('index.html'))
 7     # response是flask.wrappers.Response類型
 8     # response.delete_cookie
 9     # response.set_cookie
10     # response.headers['X-Something'] = 'A value'
11     return response
12  
13 app.run()

3、Session

除請求對象之外,還有一個 session 對象。它允許你在不同請求間存儲特定用戶的信息。它是在 Cookies 的基礎上實現的,並且對 Cookies 進行密鑰簽名要使用會話,你需要設置一個密鑰。

  • 設置:session['username'] = 'xxx'

  • 刪除:session.pop('username', None)
 1 from flask import Flask, session, redirect, url_for, escape, request
 2  
 3 app = Flask(__name__)
 4  
 5 @app.route('/')
 6 def index():
 7     if 'username' in session:
 8         return 'Logged in as %s' % escape(session['username'])
 9     return 'You are not logged in'
10  
11 @app.route('/login', methods=['GET', 'POST'])
12 def login():
13     if request.method == 'POST':
14         session['username'] = request.form['username']
15         return redirect(url_for('index'))
16     return '''
17         <form action="" method="post">
18             <p><input type=text name=username>
19             <p><input type=submit value=Login>
20         </form>
21     '''
22  
23 @app.route('/logout')
24 def logout():
25     # remove the username from the session if it's there
26     session.pop('username', None)
27     return redirect(url_for('index'))
28  
29 # set the secret key.  keep this really secret:
30 app.secret_key = 'A0Zr98j/3yX R~XHH!jmN]LWX/,?RT'
View Code

4.message

message是一個基於Session實現的用於保存數據的集合,其特點是:使用一次就刪除

 1 <!DOCTYPE html>
 2 <html>
 3 <head lang="en">
 4     <meta charset="UTF-8">
 5     <title></title>
 6 </head>
 7 <body>
 8     {% with messages = get_flashed_messages() %}
 9         {% if messages %}
10         <ul class=flashes>
11             {% for message in messages %}
12             <li>{{ message }}</li>
13             {% endfor %}
14         </ul>
15         {% endif %}
16     {% endwith %}
17 </body>
18 </html>
19 
20 index.html
index.html
 1 from flask import Flask, flash, redirect, render_template, request
 2  
 3 app = Flask(__name__)
 4 app.secret_key = 'some_secret'
 5  
 6 @app.route('/')
 7 def index1():
 8     return render_template('index.html')
 9  
10 @app.route('/set')
11 def index2():
12     v = request.args.get('p')
13     flash(v)
14     return 'ok'
15  
16 if __name__ == "__main__":
17     app.run()

5.中間件

 1 from flask import Flask, flash, redirect, render_template, request
 2  
 3 app = Flask(__name__)
 4 app.secret_key = 'some_secret'
 5  
 6 @app.route('/')
 7 def index1():
 8     return render_template('index.html')
 9  
10 @app.route('/set')
11 def index2():
12     v = request.args.get('p')
13     flash(v)
14     return 'ok'
15  
16 class MiddleWare:
17     def __init__(self,wsgi_app):
18         self.wsgi_app = wsgi_app
19  
20     def __call__(self, *args, **kwargs):
21  
22         return self.wsgi_app(*args, **kwargs)
23  
24 if __name__ == "__main__":
25     app.wsgi_app = MiddleWare(app.wsgi_app)
26     app.run(port=9999)

Flask還有眾多其他功能,更多參見:
    http://docs.jinkan.org/docs/flask/
    http://flask.pocoo.org/

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 字典由大括弧和鍵值對組成,特點為無序,鍵唯一 1.字典的創建 2.字典的增加與修改 3.字典的查詢,通過鍵去查找 4.字典的刪除 5.其他創建字典的方法 6.字典的遍歷 可以利用for迴圈 ...
  • 個人練習 讓我們用字母B來表示“百”、字母S表示“十”,用“12...n”來表示個位數字n(&lt10),換個格式來輸出任一個不超過3位的正整數。例如234應該被輸出為BBSSS1234,因為它有2個“百”、3個“十”、以及個位的4。 輸入格式:每個測試輸入包含1個測試用例,給出正整數n(&lt10 ...
  • 元組又叫只讀列表,不可以修改其內容 1.創建元組 2.可將列表轉化為元組 3.查詢 元組查詢和切片方式與列表基本相同 4.count 統計元素個數 5.index 返回元素的索引位置 6.len計算元組中元素的個數 ...
  • 還是先占坑,等理順了思路再寫,學過的東西總是無法系統化,感覺什麼都知道一點,但一深入卻是一臉懵逼。 這真的是個問題,看似很努力,卻無法成為一個master。 參考鏈接: 1. 編程語言的類型系統為何如此重要? https://www.zhihu.com/question/23434097 2. 程式 ...
  • 個人練習 讀入n名學生的姓名、學號、成績,分別輸出成績最高和成績最低學生的姓名和學號。 輸入格式:每個測試輸入包含1個測試用例,格式為\ 其中姓名和學號均為不超過10個字元的字元串,成績為0到100之間的一個整數,這裡保證在一組測試用例中沒有兩個學生的成績是相同的。 輸出格式:對每個測試用例輸出2行 ...
  • 給定一個二叉樹,返回所有從根節點到葉子節點的路徑。 說明: 葉子節點是指沒有子節點的節點。 示例: 輸入: 1 / \ 2 3 \ 5 輸出: ["1->2->5", "1->3"] 解釋: 所有根節點到葉子節點的路徑為: 1->2->5, 1->3 給定一個二叉樹,返回所有從根節點到葉子節點的路徑 ...
  • 個人練習 為了用事實說明挖掘機技術到底哪家強,PAT 組織了一場挖掘機技能大賽。現請你根據比賽結果統計出技術最強的那個學校。 輸入格式: 輸入在第 1 行給出不超過 10​^5的正整數 N,即參賽人數。隨後 N 行,每行給出一位參賽者的信息和成績,包括其所代表的學校的編號(從 1 開始連續編號)、及 ...
  • 正則表達式的用法與案例分析 2018-08-24 21:26:14 【說明】:該文主要為了隨後複習和使用備查,由於做了word文檔筆記,所以此處博文沒有怎麼排版,沒放代碼,以插入圖片為主, 一、正則表達式之特殊字元 註意: 以下的案例中是match()匹配,match是要求從第一個字元開始匹配,所以 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...