我正在尝试使用jinja2
显示存储在烧瓶url_for
模板中的s3存储桶中的图像。我收到错误消息:
TypeError: url_for() missing 1 required positional argument: 'endpoint'
这里是我尝试使用的方式:
{% if post.image %}
<div class="container pt-3">
<img src="{{url_for(filename='https://flogger-assets.s3.us-east-2.amazonaws.com/' + post.image + '.lg.png') }}" class="img-fluid" />
</div>
{% endif %}