有没有办法将python字符串用作html代码?

时间:2019-12-21 21:58:38

标签: python html

我是HTML代码的新手,我想展示一些Python代码选择的图像,这就是我想到的。 application.py

s = f"""
    <img src="{{url_for('static', filename='{file1}')}}" />
    <img src="{{url_for('static', filename='{file2}')}}" />
    """
    return render_template("index.html", s = s)

file1和file2是jpg图像文件名

index.html

<p>
   {{ s|e }}
</p>

这段代码只是编写我制作的html标签,而不显示图像。请让我知道我在做什么错。

0 个答案:

没有答案