jQuery将变量发布到php和下载文件

时间:2015-11-06 19:43:57

标签: javascript php jquery

我不确定我的代码是否正确,但我一直在收到错误,说调试器中不允许post

我试图发送我的javascript变量 - 下载网址&新的文件名 - 到我的php文件和php然后下载.mp3。

jQuery的:

$.post('https://scriptkitti.github.io/Articles/Files/DownCloud.php', {
    'filePath': url + '?client_id=' + client,
    'fileTitle': title
});

PHP:

<?php
    if (isset($_POST['fileTitle'], $_POST['filePath'])) {
        $fileTitle = $_POST['fileTitle'];
        $filePath = $_POST['filePath'];
        header('Content-Type: audio/mp3');
        header('Content-Disposition: attachment; filename="' . $fileTitle . '.mp3";');
        header('Pragma: public');
        header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
        header('Content-Length: ' . filesize($filePath));
        readfile($filePath);
        exit;
    }
?>

1 个答案:

答案 0 :(得分:1)

您要发布的链接未执行。我去了它,它下载了PHP源代码。根据这个answer,github页面不执行服务器端代码(php),它只用于静态内容(html,css,js等)