我正在使用 Flask 设计这个简单的网站。但是我的 hello 方法出现 404 错误。每当我单击“评价艺术家”按钮时,都会出现错误,但 home.html、hello.html 和 artist.html 的模板都是正确的。我不知道我的代码的哪一部分是错误的。有什么帮助吗?
@app.route("/",methods=['GET','POST'])
def login():
if request.method=="GET":
return render_template("home.html")
if request.method=="POST":
if (request.form["button"]=="login"):
return render_template("hello.html",name=request.form["name"])
@app.route("/hello",methods=['GET','POST'])
def hello():
if request.method=="GET":
if(request.form["button"]=="rate artists"):
return render_template("artist.html")