Python編程flask使用頁面模版的方法
在flask中可以像go和angular那樣使用頁面模版(template),可以將HTML頁面顯示進行模版化,通過參數(shù)傳遞與頁面進行數(shù)據(jù)交互。
概要信息
事前準備:flask
liumiaocn:flask liumiao$ which flask /usr/local/bin/flask liumiaocn:flask liumiao$ flask --version Flask 1.0.2 Python 2.7.10 (default, Jul 15 2017, 17:16:57) [GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.31)] liumiaocn:flask liumiao$
代碼示例:嵌入式的HTML模版
像Angular一樣,我們可以在flask中寫前端的頁面,python代碼中混雜著HTML代碼,在這里將前面的HelloWorld示例進行簡單的修改,將顯示的Hello World加上的設(shè)置。
代碼示例
liumiaocn:flask liumiao$ cat flask_1.py #!/usr/bin/python from flask import Flask app = Flask(__name__) @app.route("/") def hello(): return "<h1>Hello World!</h1>" if __name__ == "__main__": app.debug=True app.run(host='0.0.0.0',port=7000) liumiaocn:flask liumiao$
執(zhí)行&確認
在HelloWorld示例中我們提到有兩種方式啟動flask的微服務(wù)進程,這里再添加一種,添加#!/usr/bin/python之后,同時對此文件添加可執(zhí)行權(quán)限比如755,即可使用.啟動
liumiaocn:flask liumiao$ chmod 755 flask_1.py liumiaocn:flask liumiao$ ./flask_1.py * Serving Flask app "flask_1" (lazy loading) * Environment: production WARNING: Do not use the development server in a production environment. Use a production WSGI server instead. * Debug mode: on * Running on http://0.0.0.0:7000/ (Press CTRL+C to quit) * Restarting with stat * Debugger is active! * Debugger PIN: 131-533-062
通過curl進行結(jié)果確認:
liumiaocn:flask liumiao$ curl http://localhost:7000 <h1>Hello World!</h1>liumiaocn:flask liumiao$
頁面確認
代碼示例
上面的示例過于簡單,寫一個簡單的完整的頁面來確認一下
liumiaocn:flask liumiao$ cat flask_1.py #!/usr/bin/python from flask import Flask app = Flask(__name__) @app.route("/") def hello(): return '<!DOCTYPE html> \ <html> \ <head> \ <meta charset="utf-8"> \ <title>Hello</title> \ </head> \ <body>\ <h1>Hello World!</h1> \ </body>\ </html>' if __name__ == "__main__": app.debug=True app.run(host='0.0.0.0',port=7000) liumiaocn:flask liumiao$
執(zhí)行&確認
通過curl可以確認頁面范圍信息
liumiaocn:flask liumiao$ ./flask_1.py * Serving Flask app "flask_1" (lazy loading) * Environment: production WARNING: Do not use the development server in a production environment. Use a production WSGI server instead. * Debug mode: on * Running on http://0.0.0.0:7000/ (Press CTRL+C to quit) * Restarting with stat * Debugger is active! * Debugger PIN: 131-533-062
也可以通過瀏覽器來確認title和頁面顯示
頁面模版
嵌在python的代碼中非常的麻煩,轉(zhuǎn)義的連接,以及源碼的查看都非常不方便。flask提供了Jinja2的模版渲染,只需要引入render_template即可使用。
import render_template
為了使用這個功能,首先需要在程序中做如下import
from flask import render_template
準備頁面信息
比如將上文中嵌入的HTML頁面獨立成index.html,詳細信息如下:
liumiaocn:flask liumiao$ ls templates/ index.html liumiaocn:flask liumiao$ cat templates/index.html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Hello Template</title> </head> <body> <h1>Hello World!</h1> </body> </html> liumiaocn:flask liumiao$
注意事項:flask會在當(dāng)前目錄的templates下搜索對應(yīng)的模版文件,所以需要創(chuàng)建templates文件夾,然后將模版html文件放入其中。
頁面調(diào)用
在頁面上只需要調(diào)用render_template即可實現(xiàn)url與對應(yīng)模版的關(guān)聯(lián),
render_template(“index.html”)
詳細代碼
liumiaocn:flask liumiao$ cat flask_2.py #!/usr/bin/python from flask import Flask from flask import render_template app = Flask(__name__) @app.route("/") def hello(): return render_template("index.html") if __name__ == "__main__": app.debug=True app.run(host='0.0.0.0',port=7000) liumiaocn:flask liumiao$
執(zhí)行&確認
liumiaocn:flask liumiao$ python flask_2.py * Serving Flask app "flask_2" (lazy loading) * Environment: production WARNING: Do not use the development server in a production environment. Use a production WSGI server instead. * Debug mode: on * Running on http://0.0.0.0:7000/ (Press CTRL+C to quit) * Restarting with stat * Debugger is active! * Debugger PIN: 131-533-062
使用curl可以看到詳細的html代碼,而且讀起來方便多了
liumiaocn:~ liumiao$ curl http://localhost:7000 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Hello Template</title> </head> <body> <h1>Hello World!</h1> </body> </html>liumiaocn:~ liumiao$
也可以通過瀏覽器確認并查看源碼
小結(jié)
使用render_template,flask也可以像angular一樣非常方便的創(chuàng)建用于展示的模版視圖,我們已經(jīng)說過render_template是基于Jinja2的模版,在下一篇文章中將繼續(xù)介紹template的數(shù)據(jù)交互和控制方式。
總結(jié)
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,謝謝大家對腳本之家的支持。如果你想了解更多相關(guān)內(nèi)容請查看下面相關(guān)鏈接
相關(guān)文章
python用pdfplumber提取pdf表格數(shù)據(jù)并保存到excel文件中
在實際研究中我們經(jīng)常需要獲取大量數(shù)據(jù),而這些數(shù)據(jù)很大一部分以pdf表格的形式呈現(xiàn),如公司年報、發(fā)行上市公告等,下面這篇文章主要給大家介紹了關(guān)于利用python提取pdf表格數(shù)據(jù)并保存到excel文件中的相關(guān)資料,需要的朋友可以參考下2022-07-07python3使用libpcap庫進行抓包及數(shù)據(jù)處理的操作方法
這篇文章主要介紹了python3使用libpcap庫進行抓包及數(shù)據(jù)處理,需要的朋友可以參考下2022-10-10