【发布时间】:2021-09-30 15:40:07
【问题描述】:
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
<div class="alert alert-{{ category }}"
style="margin-right: -500px; margin-left: -500px; text-align: center;">
{{ message }}
</div>
{% endfor %}
{% endif %}
{% endwith %}
我有一个页面很长的应用,当执行一个带有闪消息的操作时,闪消息是否可以显示在当前位置,而不是转到页面顶部?
【问题讨论】: