我正在尝试使用Flask通过App Engine实例将一些图像上传到GCS,但每次上传文件时,我下载时都会收到损坏的文件。我做错了什么?
我已经按照文档中的方式下载并使用了Google云端存储客户端。
@app.route('/upload', methods=['POST'])
def upload():
if request.method == 'POST':
file = request.files['file']
extension = secure_filename(file.filename).rsplit('.', 1)[1]
options = {}
options['retry_params'] = gcs.RetryParams(backoff_factor=1.1)
options['content_type'] = 'image/' + extension
bucket_name = "gcs-tester-app"
path = '/' + bucket_name + '/' + str(secure_filename(file.filename))
if file and allowed_file(file.filename):
try:
with gcs.open(path, 'w', **options) as f:
f.write(str(file))
print jsonify({"success": True})
return jsonify({"success": True})
except Exception as e:
logging.exception(e)
return jsonify({"success": False})
感谢您的帮助!!
答案 0 :(得分:7)
您正在上传(写入gcs流)文件对象的str表示,而不是文件内容。
试试这个:
@app.route('/upload', methods=['POST'])
def upload():
if request.method == 'POST':
file = request.files['file']
extension = secure_filename(file.filename).rsplit('.', 1)[1]
options = {}
options['retry_params'] = gcs.RetryParams(backoff_factor=1.1)
options['content_type'] = 'image/' + extension
bucket_name = "gcs-tester-app"
path = '/' + bucket_name + '/' + str(secure_filename(file.filename))
if file and allowed_file(file.filename):
try:
with gcs.open(path, 'w', **options) as f:
f.write(file.stream.read())# instead of f.write(str(file))
print jsonify({"success": True})
return jsonify({"success": True})
except Exception as e:
logging.exception(e)
return jsonify({"success": False})
但这不是最有效的方法,而且,直接来自app引擎的文件上传量为32mb上限,避免这种情况的方法是通过使用GCS签署上传URL并直接从前端到GCS,或者您可以创建一个带有blobstore的文件上传URL和一个处理程序来执行上传后处理,如下所示:https://cloud.google.com/appengine/docs/python/blobstore/