Python Flask getting 404 Not Found Error
问题 I am designing this simple website using Flask. But I am getting a 404 error for my hello method. Whenever I click on the button "rate artists," it's giving me the error, but templates for home.html, hello.html, and artist.html are all correct. I do not know what part of my code is wrong. Any help? @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