Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
919 views
in Technique[技术] by (71.8m points)

python - AttributeError: 'NoneType' object has no attribute 'save' [Flask FIle Upload]

@app.route('/form')
def form():
    return render_template('form.html')


@app.route("/upload", methods=['GET', 'POST'])
def upload():
    if request.method == 'POST':
        f = request.form.get('file')
        full_filename = os.path.join(app.config['UPLOAD_FOLDER'], 'resume1')
        f.save(full_filename)



        return ("Uploaded Successfully")

form.html

<html>
   <body>
      <form action = "/upload" method = "post" enctype = "multipart/form-data">
         <input type = "file" name = "file" />
         <input type = "submit" value = "Submit" />
      </form>
   </body>
</html>

I am trying to upload a file using flask but it is throwing me this error Please help

question from:https://stackoverflow.com/questions/65947387/attributeerror-nonetype-object-has-no-attribute-save-flask-file-upload

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You cannot get the uploaded file using this line f = request.form.get('file'). You need to replace that line with this.

f = request.files.get("file")

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...