所以我写了控制器:
@app.route('/')
def index():
flash('Hello world!', 'success')
return render_template('index.html')
然后在我的模板中输出如下的 flash 消息:
{%- with messages = get_flashed_messages(with_categories=true) -%}
{%- if messages -%}
<ul class="flashes unstyled">
{%- for category, message in messages -%}
<li class="alert alert-{{ category }}">
<a class="close" data-dismiss="alert">×</a>
{{ message }}
</li>
{%- endfor -%}
</ul>
{%- endif -%}
{%- endwith %}
但问题是我总是得到“消息”类别,所以<li>
与 classes 一起使用'alert alert-message'
。
我阅读了文档,对我而言,我做的一切都是正确的,但是'flash'
函数忽略了第二个参数并始终使用默认值'message'
(而不是我给出的“成功”)。
我想知道是否有人遇到过这个问题并且知道如何处理它?