我用Flask的flash
显示的消息在重新加载页面之前不会离开页面。使用Python延迟后,如何使这些消息消失?我找到的答案是针对JavaScript的,但是我正在寻找如何在Python中做到这一点。使用Python不可能吗?我应该使用JavaScript吗?为什么?
<main role="main" class="container">
<div class="row">
<div class="col-md-8">
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
<div class="alert alert-{{ category }}">
{{ message }}
</div>
{% endfor %}
{% endif %}
{% endwith %}
{% block content %}{% endblock %}
</div>