簡體   English   中英

Python Flask,上傳文件-引發BuildError(端點,值,方法)

[英]Python Flask, Uploading a file - raise BuildError(endpoint, values, method)

我遵循了教程,通過Flask將文件上傳到Web服務器,但值得注意的是返回部分除外。

我的意圖是上傳圖片。

這是我的代碼:

from flask import Flask, request, jsonify, json, Blueprint, redirect, url_for, send_from_directory
from werkzeug import secure_filename

app = Flask(__name__)

allowed_extensions = set(['png', 'jpg', 'jpeg', 'gif', 'bmp'])
folder_upload = '/Users/myusername/Documents/Project_Upload/'

@CustomersAPI.route('/customers/addpicture', methods=['POST'])
def add_picture():
    file = request.files['value']
    print file.filename
    if file and allowed_file(file.filename):
        filename = secure_filename(file.filename)
        file.save(os.path.join(app.config['UPLOAD_FOLDER'], filename))
        #return redirect(url_for('uploaded_file', filename=filename))
        return str(url_for('uploaded_file', filename=filename))

    return "Unable to upload."

def allowed_file(filename):
    return '.' in filename and filename.rsplit('.', 1)[1] in allowed_extensions

if __name__ == '__main__':
    app.config['UPLOAD FOLDER'] = folder_upload
    app.run(host = '0.0.0.0', debug=True)

由於我還沒有HTML文件(因此注釋掉了return redirect ),因此我使用CocoaRestClient進行測試,這是我使用的參數:

在此處輸入圖片說明

到目前為止一切正常,直到我點擊“提交”按鈕。 然后,出現以下錯誤:

Traceback (most recent call last):
  File "/Library/Python/2.7/site-packages/flask/app.py", line 1836, in __call__
    return self.wsgi_app(environ, start_response)
  File "/Library/Python/2.7/site-packages/flask/app.py", line 1820, in wsgi_app
    response = self.make_response(self.handle_exception(e))
  File "/Library/Python/2.7/site-packages/flask/app.py", line 1403, in handle_exception
    reraise(exc_type, exc_value, tb)
  File "/Library/Python/2.7/site-packages/flask/app.py", line 1817, in wsgi_app
    response = self.full_dispatch_request()
  File "/Library/Python/2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
    rv = self.handle_user_exception(e)
  File "/Library/Python/2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
    reraise(exc_type, exc_value, tb)
  File "/Library/Python/2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
    rv = self.dispatch_request()
  File "/Library/Python/2.7/site-packages/flask/app.py", line 1461, in dispatch_request
    return self.view_functions[rule.endpoint](**req.view_args)
  File "/Users/myusername/Documents/Project_Omnimoda/API/main.py", line 192, in add_picture
    return redirect(url_for('uploaded_file', filename=filename))
  File "/Library/Python/2.7/site-packages/flask/helpers.py", line 312, in url_for
    return appctx.app.handle_url_build_error(error, endpoint, values)
  File "/Library/Python/2.7/site-packages/flask/app.py", line 1641, in handle_url_build_error
    reraise(exc_type, exc_value, tb)
  File "/Library/Python/2.7/site-packages/flask/helpers.py", line 305, in url_for
    force_external=external)
  File "/Library/Python/2.7/site-packages/werkzeug/routing.py", line 1649, in build
    raise BuildError(endpoint, values, method)
BuildError: ('uploaded_file', MultiDict([('filename', '3611571-dc_holiday.jpg')]), None)

有趣的是,圖像“ 3611571-dc_holiday.jpg”實際上確實從我的“下載”文件夾中復制到了Project_Upload文件夾中,因此它可以正常工作,只是有一個我不確定如何解決的錯誤。

有任何想法嗎? 謝謝。

您尚未定義uploaded_file端點。 您需要這樣做。

@CustomersAPI.route('/customers/SOMETHINGOGESTHERE')
def uploaded_file(filename):
    # Do something here with the file, like return it.
    return send_from_directory(
        folder_upload, filename, as_attachment=True)

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM