渲染模板用法

Flask 允许你使用模板来创建动态网页内容。使用模板的示例项目结构如下:

myproject/
    /app/
        /templates/
            /index.html
        /views.py

views.py

from flask import Flask, render_template

app = Flask(__name__)

@app.route("/")
def index():
    pagetitle = "HomePage"
    return render_template("index.html",
                            mytitle=pagetitle,
                            mycontent="Hello World")

请注意,你可以通过将键/值对附加到 render_templates 函数,将动态内容从路由处理程序传递到模板。在上面的示例中,pagetitlemycontent 变量将传递给模板以包含在呈现的页面中。通过将这些变量括在双括号中来包含这些变量:{{mytitle}}

index.html

<html>
    <head>
        <title>{{ mytitle }}</title>
    </head>
    <body>
        <p>{{ mycontent }}</p>
    </body>
</html>

当执行与第一个示例相同时,http://localhost:5000/将具有标题 HomePage 和具有内容 Hello World 的段落。