gpt4 book ai didi

python - Flask:忽略 'category' 参数的 Flash 函数

转载 作者:太空宇宙 更新时间:2023-11-04 07:41:58 24 4
gpt4 key购买 nike

所以我写了 Controller :

@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">&times;</a>
{{ message }}
</li>
{%- endfor -%}
</ul>
{%- endif -%}
{%- endwith %}

但问题是我总是得到“消息”类别,所以 <li>上课'alert alert-message' .
我阅读了文档,对我来说我做的一切都是对的,但是 'flash'函数忽略第二个参数并始终使用默认值 'message' (而不是我给的“成功”)。

我想知道是否有人遇到过这个问题并且知道如何处理它?<​​/p>

最佳答案

编辑:根据其他评论,无需测试 kwarg。

基于 http://flask.pocoo.org/docs/api/#message-flashing 上的文档看来您需要使用这种格式。 flash(消息, category='message')

@app.route('/')
def index():
flash('Hello world!', category='success')
return render_template('index.html')

关于python - Flask:忽略 'category' 参数的 Flash 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18396936/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com