如何在python中使用像Flask这样的Klein接收上传的文件

时间:2016-08-24 19:14:26

标签: python web-services klein-mvc

设置Flask服务器时,我们可以尝试接收

上传的文件用户
imagefile = flask.request.files['imagefile']
filename_ = str(datetime.datetime.now()).replace(' ', '_') + \
    werkzeug.secure_filename(imagefile.filename)
filename = os.path.join(UPLOAD_FOLDER, filename_)
imagefile.save(filename)
logging.info('Saving to %s.', filename)
image = exifutil.open_oriented_im(filename)

当我查看Klein文档时,我看到http://klein.readthedocs.io/en/latest/examples/staticfiles.html,但这似乎是从Web服务提供文件而不是接收已上传到Web服务的文件。如果我想让我的Klein服务器能够接收abc.jpg并将其保存在文件系统中,是否有任何文档可以指导我实现该目标?

1 个答案:

答案 0 :(得分:3)

Liam Kelly评论时,来自this post的摘要应该有效。使用cgi.FieldStorage可以轻松发送文件元数据而无需显式发送。 Klein / Twisted方法看起来像这样:

from cgi import FieldStorage
from klein import Klein
from werkzeug import secure_filename

app = Klein()

@app.route('/')
def formpage(request):
    return '''
    <form action="/images" enctype="multipart/form-data" method="post">
    <p>
        Please specify a file, or a set of files:<br>
        <input type="file" name="datafile" size="40">
    </p>
    <div>
        <input type="submit" value="Send">
    </div>
    </form>
    '''

@app.route('/images', methods=['POST'])
def processImages(request):
    method = request.method.decode('utf-8').upper()
    content_type = request.getHeader('content-type')

    img = FieldStorage(
        fp = request.content,
        headers = request.getAllHeaders(),
        environ = {'REQUEST_METHOD': method, 'CONTENT_TYPE': content_type})
    name = secure_filename(img[b'datafile'].filename)

    with open(name, 'wb') as fileOutput:
        # fileOutput.write(img['datafile'].value)
        fileOutput.write(request.args[b'datafile'][0])

app.run('localhost', 8000)

无论出于何种原因,我的{3.4}(Ubuntu 14.04)版本的cgi.FieldStorage都没有返回正确的结果。我在Python 2.7.11上测试了它,它工作正常。话虽如此,您还可以收集前端的文件名和其他元数据,并通过ajax调用发送给klein。这样你就不必在后端进行太多处理(这通常是一件好事)。或者,您可以弄清楚如何使用werkzeug提供的实用程序。函数werkzeug.secure_filenamerequest.files(即FileStorage)并不是特别难以实现或重新创建。