我想通过pylon控制器操作而不是呈现模板,而是将文件发送给用户进行下载。在像PHP这样的语言中,我可以像下面这样做。我该如何在塔架上做
?header("Content-Type: application/octet-stream");
header("Content-Transfer-Encoding: Binary");
header("Content-disposition: attachment; filename=\"file.exe\"");
echo readfile($url);