如题,我需要用url_for和img显示图片。其中图片名字为:1、2、3、4。我使用的for num in id来做的传参,但结果是,url_for根本没有使用num代表的参数。
后端部分:
id=[1,2,3,4]
@app.route('/')
def index():
return render_template("index.html",
id=id,
)
前端部分:
{% for num in id %}
<img src="{{ url_for('static', filename='{{num}}.png')}}">
{% endfor %}
但程序运行以后,网页显示的图片出错,而{{num}}似乎也只是直接显示了出来,请大佬指教一下。谢谢。