5

我目前在 GAE Blobstore 中存储了一堆 .docx 文件。我最近注意到这些文件在某些​​计算机(Windows 7 的 IE 9)上没有文件扩展名的情况下下载,但在其他计算机(IE 8、Windows 7 的 Chrome)上运行良好。

以下是文件在 blobstore 中的存储方式:

f = files.blobstore.create(mime_type='application/vnd.openxmlformats-officedocument.wordprocessingml.document',
                           _blobinfo_uploaded_filename=filename)
## then some code to write data and save ##

这是来自 Chrome 检查器的文件的响应标头:

Cache-Control:no-cache
Content-Disposition:attachment; filename="causes_of_ww1_emanresu"
Content-Length:12120
Content-Type:application/vnd.openxmlformats-officedocument.wordprocessingml.document
Date:Fri, 26 Oct 2012 23:54:09 GMT
Server:Google Frontend
X-AppEngine-Estimated-CPM-US-Dollars:$0.000033
X-AppEngine-Resource-Usage:ms=15 cpu_ms=0

这是我为 blob 提供服务的方式:

self.send_blob(blob_info, save_as=blob_info.filename, content_type=blob_info.content_type)

我什content_type='application/vnd.openxmlformats-officedocument.wordprocessingml.document'至尝试硬编码无济于事。

关于发生了什么以及如何解决它的任何想法?


根据要求,这是我在最初保存 blob 时获取文件信息的方式。我很确定这个级别没有发生错误,但这是问题的前兆:

# get the file from a file_url with urlfetch
result = urlfetch.fetch(file_url)
headers = result.headers

# some custom functions to return a filename
username = self.get_username()
filename = get_filename(title, username)

# write the file to blobstore
f = files.blobstore.create(mime_type=headers['content-type'], 
                           _blobinfo_uploaded_filename=filename)
with files.open(f, 'a') as data:
    data.write(result.content)
files.finalize(f)
blob_key = files.blobstore.get_blob_key(f)
4

1 回答 1

3

啊,根据顶部的评论,解决方案是将文件扩展名添加到 BlobInfo 中的文件名属性中。我最初并没有意识到这是必要的,因为 Chrome 在下载时自动添加了文件扩展名。

于 2012-10-30T19:42:11.247 回答