Flask向Jinja2模板中传入数据

本文介绍了如何通过Flask框架向Jinja2模板传递不同类型的数据,包括原子类型(如整型和浮点型)、列表、元组、字典、集合、函数以及对象实例,并给出了相应的HTML模板和Python代码示例。
摘要由CSDN通过智能技术生成

目录

可以传入哪些数据?

传入原子类型数据

传入列表、元组、字典和集合

传入函数

传入对象实例


可以传入哪些数据?

可以将Python中的原子类型、列表、元组、集合、字典、方法、函数甚至对象实例。。。传入到html文件中使用。

传入原子类型数据

使用flask模块中的render_template函数将python数据传入到html中。

下面的例子传入一个整型数据和一个浮点型数据。

html文件:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>show Jinja2 function</title>
</head>
<body>
    <p>atom int: {
  {demo_int}}</p>
    <p>atom float: {
  {demo_float}}</p>
</body>
</html>

HTML文件中的8、9行分别接收两个传入的数据(整型和浮点型)。

Python脚本:

import webbrowser
from flask import Flask, render_template

app = Flask(__name__)

@ app.route("/")
def index():
    atom_int = 23
    atom_float = 6.7
    return render_template("show.html",
                           demo_int=atom_int,
                           demo_float=atom_float)


if __name__ == '__main__':
    host = "0.0.0.0"
    port = "8890"
    url = "http://127.0.0.1:%s" % port

    webbrowser.open(url)
    app.run(host=host, port=port)

使用关键字参数将Python中的

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值