我有一个html文件,每次刷新页面时都需要显示一条随机消息。我正在考虑使用一个生成随机消息的python程序。但是如何从我的python程序中获取消息到我的html文件中?谢谢
答案 0 :(得分:1)
您可以使用flask,例如app.py
来完成from flask import Flask, render_template
app = Flask(__name__)
random_message = "some random message"
@app.route("/")
def main():
return render_template(["index.html"], value=random_message)
if __name__ == '__main__':
app.run(debug=True)
创建目录模板并将index.html文件放入内容
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Test</title>
</head>
<body>
{{ value }}
</body>
</html>
您可以在此处阅读有关烧瓶的信息http://flask.pocoo.org/
答案 1 :(得分:0)
使用flask它会将消息呈现给HTML文件,它是一个Python微框架