2014年6月22日 星期日 阴转晴

经过试验,下面这两种方法是不一样的:

方法一: 浏览器根据Content-Type就处理了,属于浏览器行为: [code]self.set_header(‘Content-Type’,‘application/pdf’)[/code]

方法二: 这种方法就直接下载了: [code]self.set_header(‘Content-Disposition’,“attachment;filename=%s;charset=utf-8” % ‘filename.pdf’) [/code]