我正在Flask中使用template和render_template做一个小任务。以下是代码:
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def hello():
return render_template("index.html", body = "Hello World!!! I've run my first Flask application." )
Index.html文件:
<html>
<body>
{{body}}
</body>
</html>
我试图将字符串作为原始值传递
return render_template("index.html", body = r"Hello World!!! I've run my first Flask application.")
但是输出为:
Hello World!!! I've run my first Flask application.
预期:
Hello World !!!我已经运行了我的第一个Flask应用程序。