- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
在搭建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
,然而,这似乎是从网络服务提供文件,而不是接收已上传到网络服务的文件。如果我想让我的 Klein
服务器能够接收 abc.jpg
并将其保存在文件系统中,是否有任何文档可以指导我实现该目标?
最佳答案
正如 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)
无论出于何种原因,我的 Python 3.4 (Ubuntu 14.04) 版本的 cgi.FieldStorage
都没有返回正确的结果。我在 Python 2.7.11 上对此进行了测试,它工作正常。话虽如此,您还可以在前端收集文件名和其他元数据,然后通过 ajax 调用将它们发送给 klein。这样您就不必在后端做太多处理(这通常是一件好事)。或者,您可以了解如何使用 werkzeug 提供的实用程序。函数 werkzeug.secure_filename
和 request.files
(即 FileStorage
)实现或重新创建并不是特别困难。
关于python - 如何在python中像Flask一样使用Klein接收上传的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39131368/
我有以下正则表达式 /[a-zA-Z0-9_-]/ 当字符串只包含从 a 到z 大小写、数字、_ 和 -。 我的代码有什么问题? 能否请您向我提供一个简短的解释和有关如何修复它的代码示例? //var
我是一名优秀的程序员,十分优秀!