问题描述:
如果下载的文件全名称(包含扩展名部分)包含两个或者两个以上的点(.),IE下载对话框中会自动在第一个点前加上[1],比如: myfile[1].abc.tgz
解决方案:
判断是否是ie浏览器,如果是则把非最后一个点换成%2E.以下为Python部分示例代码:
response['Content-Disposition'] = 'attachment; filename=myfile%2Eabc.tgz'
参考:
http://www.winet.cn/php/function.fread.php
http://stackoverflow.com/questions/120497/how-to-work-around-the-1-ie-bug-while-saving-an-excel-file-from-a-web-server