flask框架学习1.2

flask框架学习1.2,第1张

如何自定义消息闪烁
有时候我们开发一个项目,希望这个项目能对用户有着良好的反馈,例如 *** 作成功或者失败都有提示之类的,那么我么就可以使用消息闪烁。
首先我们先实现一个简单后台登录逻辑

from flask import Flask, flash, redirect, render_template, \
     request, url_for

app = Flask(__name__)
app.secret_key = b'ac0a4e7786422d4fba21384fc26d1eb467ca4110e6a663829a440799952ed810'

@app.route('/')
def index():
    return render_template('index.html')

@app.route('/login', methods=['GET', 'POST'])
def login():
    error = None
    if request.method == 'POST':
        if request.form['username'] != 'admin' or \
                request.form['password'] != 'secret':
            error = 'Invalid credentials'
            # flash('Invalid password provided', 'error')
        else:
            flash('You were successfully logged in')
            return redirect(url_for('index'))
    return render_template('login.html', error=error)

这里的我们在前端写三个html文件
layout.html
flash闪烁的关键就是{% with messages = get_flashed_messages(with_categories=true) %}

<!doctype html>
<title>My Application</title>
{% with messages = get_flashed_messages(with_categories=true) %}
  {% if messages %}
    <ul class=flashes>
    {% for message in messages %}
      <li>{{ message }}</li>
    {% endfor %}
    </ul>
  {% endif %}
{% endwith %}
{% block body %}{% endblock %}

index.html

{% extends "layout.html" %}
{% block body %}
  <h1>Overview</h1>
  <p>Do you want to <a href="{{ url_for('login') }}">log in?</a>
{% endblock %}

login.html

{% extends "layout.html" %}
{% block body %}
  <h1>Login</h1>
  {% if error %}
    <p class=error><strong>Error:</strong> {{ error }}
  {% endif %}
  <form method=post>
    <dl>
      <dt>Username:
      <dd><input type=text name=username value="{{
          request.form.username }}">
      <dt>Password:
      <dd><input type=password name=password>
    </dl>
    <p><input type=submit value=Login>
  </form>
{% endblock %}

终端启动看一下效果,index页面
进入登录页面
输入错误账户密码会有提示
输入正确的密码后
好了,以上就是falsk的消息闪烁的全部内容了

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/730884.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-27
下一篇 2022-04-27

发表评论

登录后才能评论

评论列表(0条)

保存