在塔架中,如何强制用户下载文件?

时间:2018-08-18 17:07:58

标签: pylons

我想通过pylon控制器操作而不是呈现模板,而是将文件发送给用户进行下载。在像PHP这样的语言中,我可以像下面这样做。我该如何在塔架上做

header("Content-Type: application/octet-stream");
header("Content-Transfer-Encoding: Binary");
header("Content-disposition: attachment; filename=\"file.exe\""); 
echo readfile($url);

0 个答案:

没有答案