我正在使用 html 将二进制 jpeg 文件上传<form>
到托管在 Google App Engine 上的 python webapp 服务器。服务器方法接收整个图像(已成功尝试打印文件大小/类型等统计信息),但无法将其写入谷歌云存储桶。最终在 GCS 存储桶上的是一个只有 48 个字节的损坏文件。
def handleUpload(self):
client = self._get_storage_client()
bucket = client.get_bucket(config.CLOUD_STORAGE_BUCKET)
results = []
for name, fieldStorage in self.request.POST.items():
if type(fieldStorage) is unicode:
continue
result = {}
fileName = urllib.unquote(fieldStorage.filename)
blob = bucket.blob(fileName)
blob.upload_from_string(
str(fieldStorage.file),fieldStorage.type)
url = blob.public_url
if isinstance(url, six.binary_type):
url = url.decode('utf-8')
results.append(result)
return results