gpt4 book ai didi

python - 如何在 HTML 中显示变量

转载 作者:行者123 更新时间:2023-12-03 22:45:12 26 4
gpt4 key购买 nike

我正在使用 Python 制作一个网络应用程序,并且有一个我想在 HTML 页面上显示的变量。我该怎么做?会使用 {% VariableName %}在 HTML 页面中是正确的方法吗?

最佳答案

这在 Flask documentation 中有非常清楚的解释。所以我建议你阅读它以获得完整的理解,但这里有一个非常简单的渲染模板变量的例子。

HTML 模板文件存储在 templates/index.html :

<html>
<body>
<p>Here is my variable: {{ variable }}</p>
</body>
</html>

以及简单的 Flask 应用程序:
from flask import Flask, render_template

app = Flask('testapp')

@app.route('/')
def index():
return render_template('index.html', variable='12345')

if __name__ == '__main__':
app.run()

运行此脚本并访问 http://127.0.0.1:5000/在您的浏览器中。您应该看到 variable 的值呈现为 12345

关于python - 如何在 HTML 中显示变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31965558/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com