简体   繁体   中英

How to get rid of BadRequestKeyError?

I am using Python 3. I have created the necessary folders. ie static and templates folder. Still, this code is not working. I get the following error werkzeug.exceptions.BadRequestKeyError

abc.py

    from flask import Flask, request, render_template, redirect
    app=Flask(__name__)

    @app.route('/project/', methods=['GET', 'POST'])
    def tryy():
        name=request.method
        name1=request.form["uname"]
        return render_template("project1.html",name=name1)

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

project.html

    <!DOCTYPE html>

    <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
        <head>
            <meta charset="utf-8" />
            <title></title>
        </head>
        <body>
            <form action="" method="GET">
                <input type="text" name="uname" />
                <input type="submit" value="Signup" />
            </form>
        </body>
    </html>

project1.html

    <!DOCTYPE html>

    <html>
        <head>
            <meta charset="utf-8" />
            <title></title>
            <link rel="stylesheet" type="text/css"
                  href="{{url_for('static', filename='style.css')}}" />
        </head>
        <body>
            <h1>Hey there {{name}}. Nice to meet you</h1>
        </body>
    </html>

Your form action is set to "" change it to this: <form action="/project/" method="GET">

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM