0

我写了一个下载文件的代码,我给出了在mysql中搜索的fileid并获取信息并获取要下载的文件的地址,在读取文件信息后我无法获取下载文件。任何机构有任何想法吗?

$('#download').click(function(){
    $.post('ajaxAction/downloadProjectFile.php',{projectId:$('#projectId').val(),fileId:$(this).attr('alt'),userId:$('#userId').val()}, function(data){
    $('#message').html(data);
});





$content = readMyFile(dirname(__FILE__) . "/../projectFile/{$fileInfo['name']}");
header("Content-length: {$fileInfo['size']}");
header("Content-type: {$fileInfo['type']}");
header("Content-Disposition: attachment; filename={$fileInfo['name']}");
echo $content;
4

1 回答 1

0

您是否使用 $_POST['projectId'] & $_POST['fileId'] & $_POST['U​​serId'] 来获取 php 文件中的信息?如果你能告诉我执行代码时出现的错误。

于 2013-05-10T11:08:17.013 回答