如何在Flask和HTML中忽略render_template参数中的特殊字符

时间:2019-05-02 12:16:19

标签: python html flask

我正在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&#39;ve run my first Flask application.

预期:

Hello World !!!我已经运行了我的第一个Flask应用程序。

0 个答案:

没有答案