代码拉取完成,页面将自动刷新
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)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。