我是flask框架中的新开发人员,我被困在这些方法上以显示错误消息,我不明白如何使用flask flash消息。我考虑了3到4天,我知道如何处理这个问题。所以我的计划很简单,我在我的查看器中进行了一些身份验证登录。如果结果输出值为false,则会产生错误代码,错误代码将显示在我的登录页面中。这是我如何实现我的想法。
@app.route('/login/process', methods = ['POST'])
def loginprocess():
username = request.form.get('user_name')
passwd = request.form.get('user_passwd')
userAdminAuth = userLogin.checkUserAdmin(username, passwd)
userMemberAuth = userLogin.checkUserMember(username, passwd)
if userAdminAuth == True and userMemberAuth == False:
session['logged_in'] = True
session['username'] = username
return redirect(url_for('admin'))
elif userAdminAuth == False and userMemberAuth == True:
session['logged_in'] = True
session['username'] = username
return redirect(url_for('member'))
else:
error = 'Invalid username or password'
return redirect(url_for('login'))
@app.route('/login')
def login():
return render_template('login.html')
在html代码中我有这个
{% if error %}
<div class="alert alert-danger" role="alert">
<span class="glyphicon glyphicon-exclamation-sign"></span>
<span class="sr-only">Error</span>
{{ error }}
</div>
{% endif %}
问题是如何传递变量
error = 'Invalid username or password'
在网址
中@app.route('/login/process', methods=['POST'])
到网址
@app.route('/login')
哦,无论如何你应该知道这个
<form action="/login/process" method="post">
<div class="form-group">
<div class="input-group">
<div class="input-group-addon icon-custumized"><span class="glyphicon glyphicon-user"></span></div>
<input type="text" name="user_name" class="form-control form-costumized" placeholder="Username">
</div>
</div>
<div class="form-group">
<div class="input-group">
<div class="input-group-addon icon-custumized"><span class="glyphicon glyphicon-lock"></span></div>
<input type="password" name="user_passwd" class="form-control form-costumized" placeholder="Password">
</div>
</div>
<div class="btn-toolbar" role="toolbar" aria-label="action">
<div class="btn-group" role="group" aria-label="action">
<a class="btn btn-default btn-customized" href="#"><span class="glyphicon glyphicon-list-alt"></span> <span class="textsize">Register</span></a>
<button type="submit" class="btn btn-default btn-customized"><span class="textsize">Login</span> <span class="glyphicon glyphicon-menu-right"></span></button>
</div>
</div>
</form>
答案 0 :(得分:1)
在Python中,您必须致电:
flask.flash('This is the message')
然后,在模板中使用get_flashed_messages
来获取闪烁的消息并显示它们,例如:
{% with messages = get_flashed_messages(with_categories=True) %}
{% for category, message in messages %}
<div class="flash {{category}}">{{message}}</div>
{% endfor %}
{% endwith%}
Flask documentation有一个非常简单而好的例子。
消息在一个路由中闪烁并在另一个路由中显示的事实不是问题。这正是用于flask.flash
的用例!