如何在Python Pyramid Response对象中重命名文件?

时间:2012-10-25 21:51:38

标签: python response pyramid

  

可能重复:
  How to set file name in response

我将文件存储在MongoDB中。要从Pyramid提供文件,我这样做:

# view file
def file(request):
    id = ObjectId(request.matchdict['_id'])
    collection = request.matchdict['collection']
    fs = GridFS(db, collection)
    f = fs.get(id)
    filename, ext = os.path.splitext(f.name)
    ext = ext.strip('.')
    if ext in ['pdf','jpg']:
        response = Response(content_type='application/%s' % ext)
    else:
        response = Response(content_type='application/file')
    response.app_iter = FileIter(f)
    return response

使用此方法,文件名默认为文件的ObjectId字符串,该字符串不漂亮且缺少正确的文件扩展名。我查看了文档,看看如何/在哪里可以重命名Response对象中的文件,但我看不到它。任何帮助都会很棒。

2 个答案:

答案 0 :(得分:4)

设置文件名没有100%万无一失的方法。浏览器需要提供文件名。

也就是说,您可以使用Content-Disposition标头指定您希望浏览器下载该文件,而不是显示它,您也可以建议用于该文件的文件的文件名。它看起来像这样:

Content-Disposition: attachment; filename="fname.ext"

但是,没有可靠的跨浏览器方式来指定带有非ascii字符的文件名。有关详细信息,请参阅this stackoverflow question。您还必须小心使用quoted-string编码作为文件名;你应该构造一个文件名,其中删除了所有非ascii字符,"引用了\"

现在针对金字塔特有的东西。只需在回复中添加Content-Disposition标头即可。 (请注意,application/filenot a valid mime type。使用application/octet-stream作为“通用”字节包类型。)

# "application/file" is not a valid mime type!
content_subtype = ext if ext in ['jpg','pdf'] else 'octet-stream'

# This replaces non-ascii characters with '?'
# (This assumes f.name is a unicode string)
content_disposition_filename = f.name.encode('ascii', 'replace')

response = Response(content_type="application/%s" % content_subtype,
                    content_disposition='attachment; filename="%s"' 
                      % content_disposition_filename.replace('"','\\"')
           )

答案 1 :(得分:3)

看起来你必须设置Content-Disposition标题:

response.content_disposition = 'attachment; filename=%s' % filename