我必须使用 php 标头进行文件下载
header("Cache-Control: no-cache, must-revalidate");
header("Content-Type: text/plain");
header('Content-Disposition: attachment; filename="'.$equip[1].'-config.txt"');
$downloadable=str_replace("\n", "\r\n", $res['result']);
echo $downloadable;
当用户点击下载按钮时,表单会得到一个带有旋转 gif 的 jQuery 块 ui,因为文件生成时间很长。然后用户得到一个文件,我需要取消阻止我的表单......
你对此有什么想法吗?