HTML重命名下载链接

时间:2015-05-21 11:07:45

标签: javascript html download

我有这样的mp3链接:

http://example.com/932937293723.mp3

但我想在用户下载文件时将其重命名为

http://example.com/Artist - Title.mp3

我的代码:

<a href="http://example.com/932937293723.mp3" download="Artist - Title.mp3">DOWNLOAD</a>

存储在远程服务器中的mp3文件。而且我不是该服务器的所有者。 HTML download属性似乎不是很好的解决方案。因为它不是跨浏览器的。任何跨浏览器解决方案来解决这个问题? Javascript可能:D

3 个答案:

答案 0 :(得分:1)

您可以使用类似下面的内容(ASP.NET)

在ASPX中

<a href="FileDownloader.aspx?file=encoded_url_to_mp3">Download</a>

在ASP.NET中

Response.ContentType = "audio/mpeg3";
Response.AddHeader("content-disposition", "attachment;filename=New_file_name.mp3");
Server.Transfer(decoded_URL_of_MP3_file);

在此处查看其他MIME类型

更新#1 - 单独使用Javascript,你可以试试这样的东西,虽然我没有在不同的浏览器中测试过

function Download(url, fancyFileName) 
    {
    var file = document.createElement('a');
    file.href = url;
    file.target = '_blank';
    file.download = fancyFileName;

    var event = document.createEvent('Event');
    event.initEvent('click', true, true);
    file.dispatchEvent(event);
    window.URL.revokeObjectURL(file.href);
    }

Download('http://server.com/file.mp3','Artist_file.mp3');

答案 1 :(得分:1)

在后端代码中,您可以将文件提取到服务器,将其存储到变量,从那里重命名,定义相应的标头,然后返回。这可能发生在javascript点击启动的ajax调用上。

发布有关您的支持的更多详细信息,我可以为您提供更多帮助。

答案 2 :(得分:1)

如果您坚持从前端工作,请尝试使用以下代码。折旧的getblob方法,但您需要更新该方法。让我知道。

function getBinary(file){
    var xhr = new XMLHttpRequest();  
    xhr.open("GET", file, false);  
    xhr.overrideMimeType("text/plain; charset=x-user-defined");  
    xhr.send(null);
    return xhr.responseText;
}
function sendBinary(data, url){
    var xhr = new XMLHttpRequest();
    xhr.open("POST", url, true);

    if (typeof XMLHttpRequest.prototype.sendAsBinary == "function") { // Firefox 3 & 4
        var tmp = '';
        for (var i = 0; i < data.length; i++) tmp += String.fromCharCode(data.charCodeAt(i) & 0xff);
        data = tmp;
    }
    else { // Chrome 9
        // http://javascript0.org/wiki/Portable_sendAsBinary
        XMLHttpRequest.prototype.sendAsBinary = function(text){
            var data = new ArrayBuffer(text.length);
            var ui8a = new Uint8Array(data, 0);
            for (var i = 0; i < text.length; i++) ui8a[i] = (text.charCodeAt(i) & 0xff);

            var bb = new BlobBuilder(); // doesn't exist in Firefox 4
            bb.append(data);
            var blob = bb.getBlob();
            this.send(blob);
        }
    }

    xhr.sendAsBinary(data); 
}

var data = getBinary("My music.mp3");
sendBinary(data,'http://www.tonycuffe.com/mp3/tailtoddle_lo.mp3');