1 Star 0 Fork 0

黄毅yyyy/flaskdemo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.py 1.22 KB
一键复制 编辑 原始数据 按行查看 历史
黄毅yyyy 提交于 2021-05-27 11:50 . Default Changelist
from flask import Flask, render_template, request
app = Flask(__name__)
# @app.route()Flask中的路由定义,定义用户的访问路径
# /表示的是整个网站的根路径
# def index() 表示匹配上@app.route()路径后的处理程序
# 视图函数 :该类函数必须要有return。return后要给一个字符串或响应对象
@app.route('/')
def hello_word():
return render_template("login.html")
"""@app.route('/index')
def index():
str1 = 'King'
list1 = ['赵云', '马超 ', '贾诩']
return render_template("a.html", str1=str1, list1=list1)"""
# myname:a mypwd:123
#登录
@app.route("/login", methods=["post"])
def login():
username = request.form.get('myname')
userpassword = request.form.get('mypwd')
if (username == 'a' and userpassword == "123"):
return render_template("index.html")
else:
return render_template("login.html", relogin="用户名或密码错误,请重新输入")
if __name__ == '__main__':
# 运行Flask应用(启动Flask的服务),默认在本机开启的端口号是5000.
# debug=True,是将当前的启动模式改为调试模式(开发环境中建议使用调试模式,生产环境中不允许使用)
app.run(debug=True)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/huang-yi-yyyy/flaskdemo.git
[email protected]:huang-yi-yyyy/flaskdemo.git
huang-yi-yyyy
flaskdemo
flaskdemo
master

搜索帮助