当前位置:网站首页>[flask] static file and template rendering
[flask] static file and template rendering
2022-07-06 01:27:00 【Coriander Chrysanthemum】
Preface article :
Flask Departure and implementation are based on Flask The smallest application
Static files Static Files
Static files are mainly web Some pictures will be used in the application ,css file ,js Files, etc. to achieve an elegant web page . This is also an indispensable part of dynamic websites . that Flask Will solve it for you .
use Flask document : Just create a folder called static in your package or next to your module and it will be available at /static
on the application. in other words , Create in the project path static Folder , Or create at the same level of the module /static
Folder is ok ,flask You will find the contents of static files in these paths .
Static files also have a path in the system , Suppose there is a static/style.css
The file of . Then you can use the following methods to locate :
url_for('static', filename='style.css')
Template rendering Rendering Templates
If you use Python To build a through string splicing and so on HTML page , I'm afraid it will kill people . besides , You also have to consider injecting attacks, etc . With this demand , There is a concept of template engine , Popular said : This gadget can put html Code and flask Apply the returned data for dynamic integration , And then render it as html The code is displayed on the browser . If you know Java in JSP、Thymeleaf I should have understood .Flask The default template rendering engine is Jinja2.
Render a template ( One html) It uses render_template()
Method . What we need to do is to provide the name of the template and the variables to be passed to the template engine as keyword parameters . Here is a simple example of how to render a template :
from flask import render_template
@app.route('/hello/')
@app.route('/hello/<name>')
def hello(name=None):
return render_template('hello.html', name=name)
Flask Will be from templates
Find the corresponding file in the folder , This templates
Storage address and static
similar . You can refer to the following understanding :
- modular
/application.py /templates /hello.html
- package
/application
/__init__.py
/templates
/hello.html
Then for the template , We can use Jinja2 All functions of the template . This also has to know Jinja2 The document of :Jinja2.
The following is a template use case :
<!doctype html>
<title>Hello from Flask</title>
{
% if name %}
<h1>Hello {
{
name }}!</h1>
{
% else %}
<h1>Hello, World!</h1>
{
% endif %}
In the template , We can also visit config、request、session and g These objects and url_for()
and get_flashed_messages()
function . What are these? I will continue to introduce them later , In short, it can be used directly in the template .
Some pages have public sections , As header 、 Navigation and footer , If you can put the public part into a template , Other templates can be simply reused . This is the inheritance of the template (inheritance). This needs to be understood in depth , You can refer to the official .
Auto escape enabled , So if name
contain HTML, It will escape automatically . If we can trust a variable and know that it is safe HTML( for example , Because it comes from will wiki The tag is converted to HTML Module ), We can use Markup
Class or use | safe
The filter marks it as a security template .
Markup
A brief introduction to the use of class :
from markupsafe import MarkUp
print(Markup('<strong>Hello %s!</strong>') % '<blink>hacker</blink>')
# Markup('<strong>Hello <blink>hacker</blink>!</strong>')
print(Markup.escape('<blink>hacker</blink>'))
# Markup('<blink>hacker</blink>')
print(Markup('<em>Marked up</em> » HTML').striptags())
# Marked up » HTML
summary
Okay , I know so much today . Go and see the paper .
边栏推荐
- 500 lines of code to understand the principle of mecached cache client driver
- DOM introduction
- Maya hollowed out modeling
- 关于softmax函数的见解
- In the era of industrial Internet, we will achieve enough development by relying on large industrial categories
- Une image! Pourquoi l'école t'a - t - elle appris à coder, mais pourquoi pas...
- ThreeDPoseTracker项目解析
- Docker compose配置MySQL并实现远程连接
- servlet(1)
- How to see the K-line chart of gold price trend?
猜你喜欢
Alibaba-Canal使用详解(排坑版)_MySQL与ES数据同步
Condition and AQS principle
Docker compose配置MySQL并实现远程连接
【Flask】官方教程(Tutorial)-part1:项目布局、应用程序设置、定义和访问数据库
基於DVWA的文件上傳漏洞測試
Daily practice - February 13, 2022
Vulhub vulnerability recurrence 75_ XStream
Force buckle 9 palindromes
Unity | 实现面部驱动的两种方式
False breakthroughs in the trend of London Silver
随机推荐
Win10 add file extension
电气数据|IEEE118(含风能太阳能)
Poj2315 football games
Leetcode skimming questions_ Invert vowels in a string
In the era of industrial Internet, we will achieve enough development by relying on large industrial categories
【全网最全】 |MySQL EXPLAIN 完全解读
Unity VR solves the problem that the handle ray keeps flashing after touching the button of the UI
Unity | 实现面部驱动的两种方式
Basic process and testing idea of interface automation
How to see the K-line chart of gold price trend?
Docker compose configures MySQL and realizes remote connection
Loop structure of program (for loop)
【SSRF-01】服务器端请求伪造漏洞原理及利用实例
【Flask】静态文件与模板渲染
Daily practice - February 13, 2022
MATLB|实时机会约束决策及其在电力系统中的应用
有谁知道 达梦数据库表的列的数据类型 精度怎么修改呀
Paging of a scratch (page turning processing)
网易智企逆势进场,游戏工业化有了新可能
Redis' cache penetration, cache breakdown, cache avalanche