消息提示

Posted 道高一尺

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了消息提示相关的知识,希望对你有一定的参考价值。

from flask import Flask, render_template, flash, request

app = Flask(__name__)
app.secret_key = "123456"


@app.route("/")
def hello_world():
    flash("hello, mr bean")
    return render_template("index.html")


@app.route("/login", methods=["POST"])
def login():
    form = request.form
    username = form.get("username")
    password = form.get("password")
    if not username:
        flash("please input username")
        return render_template("index.html")
    if not password:
        flash("please input password")
        return render_template("index.html")
    if username == "mr bean" and password == "123456":
        flash("login success")
        return render_template("index.html")
    else:
        flash("username or password is wrong")
        return render_template("index.html")


if __name__ == __main__:
    app.run(debug=True)



#index.html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>欢迎登陆</title>
</head>
<body>
    <h1>welcome</h1>
    <form action="/login" method="post">
        <input type="text" name="username">
        <input type="password" name="password">
        <input type="submit" value="Submit">
    </form>
    <h2>{{ get_flashed_messages()[0] }}</h2>
</body>
</html>

 

以上是关于消息提示的主要内容,如果未能解决你的问题,请参考以下文章

markdown 打字稿...编码说明,提示,作弊,指南,代码片段和教程文章

没有带有拉动刷新的互联网消息 webview 片段

SpringCloud系列十一:SpringCloudStream(SpringCloudStream 简介创建消息生产者创建消息消费者自定义消息通道分组与持久化设置 RoutingKey)(代码片段

iOS代码片段CodeSnippets

EF添加关联的提示问题:映射从第 260 行开始的片段时有问题:

终于懂了:Delphi重定义消息结构随心所欲,只需要前4个字节是消息编号就行了,跟Windows消息虽然尽量保持一致,但其实相互没有特别大的关系。有了这个,就有了主动,带不带句柄完全看需要。(代码片段