JavaScript / jQueryを使用してファイルをダウンロードする


357

ここで指定された非常に類似した要件があります。

ユーザーのブラウザに手動でダウンロードを開始させる必要がある $('a#someID').click();

ただし、このwindow.href方法は使用できません。現在のページのコンテンツが、ダウンロードしようとしているファイルに置き換えられるためです。

代わりに、新しいウィンドウ/タブでダウンロードを開きます。これはどのようにして可能ですか?


私は関連する質問で多くの答えを試しました、そしてこれが決定的な答えです。
Basj

window.location.hrefを設定するとうまくいきます。また、ウィンドウの内容は変更されません。間違ったcontentTypeを使用したと思いますか?
BluE

回答:


379

見えないものを使う<iframe>

<iframe id="my_iframe" style="display:none;"></iframe>
<script>
function Download(url) {
    document.getElementById('my_iframe').src = url;
};
</script>

(HTMLやテキストファイルとして)それはそうでない場合は、レンダリングすることができるであろうファイルをダウンロードするには、ブラウザを強制するには、サーバーは、ファイルの設定する必要がMIMEタイプをなど、無意味な値にapplication/x-please-download-me代わりに、またはapplication/octet-stream任意のバイナリのために使用され、データ。

新しいタブで開くだけの場合、これを行う唯一の方法は、ユーザーがtarget属性をに設定したリンクをクリックすること_blankです。

jQueryの場合:

$('a#someID').attr({target: '_blank', 
                    href  : 'http://localhost/directory/file.pdf'});

そのリンクをクリックするたびに、新しいタブ/ウィンドウにファイルがダウンロードされます。


4
Webページで新しいタブを自動的に開くことはできません。ブラウザーにダウンロードを強制するには、サーバーに、application / x-please-download-meなどの無意味なMIMEタイプのpdfファイルを送信させます
Randy the Dev

14
よくできました!問題をうまく解決します。ただし、iframe.style.display = 'none'; これを使用すると、iframeが完全に非表示になります。現在の実装ではiframeが非表示になりますが、iframeはページの下部でスペースを占有し、余分な空白が発生します。
Akrikos 2012

2
これは「セミ」で機能します。次の簡単なテストhtmlを作成しました:<html> <body> <iframe src = "fileurl"> </ iframe> </ body> </ html>はダウンロードされますが、Chromeコンソールではダウンロードが「キャンセル」され、赤で表示されます。これは、より大きなモバイルWebアプリの一部であり、キャンセルされると、一般的なWebエラーが発生するため、アプリが壊れます。これを回避する方法はありますか?
Sagi Mann、

27
素晴らしいスニペット。ただし、無意味なもののタイプを設定すると、少し不安になります。レンダリングできるファイルをダウンロードするようブラウザに要求するには、次のヘッダーを使用しますContent-Disposition: attachment; filename="downloaded.pdf"(もちろん、必要に応じてファイル名をカスタマイズできます)。
rixo 2013

2
サーバーなしでダウンロードを強制するにはどうすればよいですか?つまり、JavaScriptを含むHTMLページだけです。
Rodrigo Ruiz

221

2019の最新ブラウザの更新

これは、私が現在推奨するアプローチですが、いくつかの注意点があります。

  • 比較的新しいブラウザが必要です
  • ファイルが非常に大きいことが予想される場合、以下の操作の一部が少なくともダウンロード中のファイルや他の興味深いCPUと同じ大きさのシステムメモリを消費する可能性があるため、元のアプローチ(iframeおよびcookie)と同様のことを行う必要があります副作用。

fetch('https://jsonplaceholder.typicode.com/todos/1')
  .then(resp => resp.blob())
  .then(blob => {
    const url = window.URL.createObjectURL(blob);
    const a = document.createElement('a');
    a.style.display = 'none';
    a.href = url;
    // the filename you want
    a.download = 'todo-1.json';
    document.body.appendChild(a);
    a.click();
    window.URL.revokeObjectURL(url);
    alert('your file has downloaded!'); // or you know, something with better UX...
  })
  .catch(() => alert('oh no!'));

2012オリジナルのjQuery / iframe / cookieベースのアプローチ

jQueryファイルダウンロードプラグインDemo)(GitHub)を作成しました。これも状況に役立ちます。これはiframeとほぼ同じように機能しますが、便利な機能がいくつかあります。

  • 見栄えの良いビジュアル(jQuery UI Dialogですが、必須ではありません)で非常に簡単にセットアップでき、すべてもテストされています

  • ユーザーがファイルのダウンロードを開始した同じページを離れることはありません。この機能は、最新のWebアプリケーションにとって重要になってきています

  • successCallback関数とfailCallback関数を使用すると、どちらの状況でもユーザーに表示される内容を明確にすることができます

  • 開発者はjQuery UIと組み合わせて、ファイルのダウンロードが発生していることをユーザーに知らせるモーダルを簡単に表示したり、ダウンロードの開始後にモーダルを解散したり、エラーが発生したことをわかりやすくユーザーに通知したりできます。この例については、デモを参照してください。これが誰かを助けることを願っています!

ここに、promise 付きのプラグインソースを使用した簡単な使用例のデモがあります。デモページには、他の多くの、「より良いUX」の例を含んでいます。

$.fileDownload('some/file.pdf')
    .done(function () { alert('File download a success!'); })
    .fail(function () { alert('File download failed!'); });

@JohnCulviner:postメソッドでjsonデータを送信できますか?試してみましたが失敗しました。私にサンプルを教えてもらえますか
サラバナン2012

呼び出しにパラメーターを渡すことは可能ですか?ダウンロードしたいファイルをサーバーが生成するために、いくつかのIDを渡す必要があるとしましょう。どうすればよいですか?感謝
omer schleifer、2015年

100をしました。賛成票。あなたの時間をありがとう-これは本当に価値があります。寄付のためにPayPalリンクを張ることを検討してください。私は寄付したでしょう。
ステファンシンケル2015年

試しましたが、コールバックが実行されません。プラグインは、サービスがエラーを返した場合でも、サービス応答を新しいタブで開くだけです。エラーがスローされたときにアプリケーションが新しいタブを開いてサービス応答を表示しないようにします。成功した場合と失敗した場合にfiledownloadのtrueとfalseを示すCookieを追加しましたが、それでも応答が新しいタブで開かれています。これを修正する方法はありません。getメソッドを使用しています。
Vishal Gulati 2017

1
@MarkAmeryは、他の回答が示しているように機能します。そのアプローチ(AFAIK)は、ダウンロードがいつ開始され、いつ完了し、エラーが発生したかについてのフィードバックを提供しません。これを「ファイアアンドフォーゲット」オプションの回答に追加できます。また、[download]属性では、POSTやその他のエキゾチックなものは使用できません。
John Culviner

142
function downloadURI(uri, name) 
{
    var link = document.createElement("a");
    // If you don't know the name or want to use
    // the webserver default set name = ''
    link.setAttribute('download', name);
    link.href = uri;
    document.body.appendChild(link);
    link.click();
    link.remove();
}

ターゲットブラウザが上記のスニペットをスムーズに実行するかどうかを確認します。http
//caniuse.com/#feat=download


1
ダウンロードファイル名didntの変更... 2015年4月にクロームでテスト
Novellizator

7
私にはこれは完璧ですが、Firefoxでも機能しません。何か案が?
g07kore

2
caniuse.com/#feat=downloadで述べたように、これは最近のFirefoxおよびChromeリリースの同一生成元リンクでのみ機能します。したがって、リンクが別のドメインを指している場合、それは今のところほとんど機能しません。
ジャン

9
Firefoxで動作するようにするdocument.body.appendChild(link)には、クリックの前とクリックの後でlink.remove()、DOMを汚染しないようにすることができます。
Okku

1
またlink.download = ""、元のファイル名を保持し、ファイル名を設定する必要がないようにすることもできます。
Okku

69

要素のダウンロード属性について多くの人が知らないことに驚いています。それについての広報にご協力ください!あなたは隠されたhtmlリンクを持っていることができて、それをクリックする偽物です。htmlリンクにdownload属性がある場合は、ファイルをダウンロードしますが、表示はしません。これがコードです。猫の写真が見つかればダウンロードします。

document.getElementById('download').click();
<a href="https://docs.google.com/uc?id=0B0jH18Lft7ypSmRjdWg1c082Y2M" download id="download" hidden></a>

注:これはすべてのブラウザーでサポートされているわけではありません。 http //www.w3schools.com/tags/att_a_download.asp


12
IEとSafariではサポートされていません
MatPag

9
Chromeはダウンロードされますが、Firefoxは画像を表示します。
Saran

ただし、その実行可能スニペットを提供するための+1。動作しないことを確認するためだけにテストする時間を節約できました。
Doopy

4
最新のChrome(2018年8月)でも画像が表示されている(ばかげたセキュリティ制限のため)失敗する
user1156544

Chromeがmp4sをダウンロードしない
Nearoo

53

jQueryの代わりにダウンロード用download属性を使用することをお勧めします

<a href="your_link" download> file_name </a>

ファイルを開かずにダウンロードします。


5
Chrome、Firefox、Opera、IE(> = 13.0)のみをサポートします
Kunal Kakkad

エッジ> = 13、IEではありません。また、ファイルの名前は無視され、代わりにIDを名前として持つファイルが取得されるため、Edge 13の実装にはバグがあります。
デビッド

8
私の意見では、これは質問に対する正しい答えです。他の回答は、古いブラウザをサポートする必要があり、回避策が必要な場合に有効です。
crabCRUSHERclamCOLLECTOR 2016

19

すでにjQueryを使用している場合は、それを利用して、
Andrewの回答の小さなスニペットA jQueryバージョンを作成できます。

var $idown;  // Keep it outside of the function, so it's initialized once.
downloadURL : function(url) {
  if ($idown) {
    $idown.attr('src',url);
  } else {
    $idown = $('<iframe>', { id:'idown', src:url }).hide().appendTo('body');
  }
},
//... How to use it:
downloadURL('http://whatever.com/file.pdf');

参考までに、誰かが(投稿を編集して)$ idown.attr( 'src'、url);を追加することを提案しました。初めてiframeを作成した後。必要だとは思いません。作成ステップですでに「src:url」を設定しています。
corbacho 2012年

また、https 9内にいるときにIE 9がhttp://を指す動的に作成されたiframeを好まなかったため、最後にこのソリューションを使用しなかったとコメントします。私も "wi​​ndow.location.href"を使用しなければなりません
でした。これ

「if($ idown)」の部分は、最新のChrome(24)では機能しませんでしたが、無限の数のiframeを作成するだけで機能しました。たぶん12個同時にダウンロードしたかったのでしょうか?
nessur 2012年

6
if声明は本当にする必要があります:if( $idown && $idown.length > 0 )
iOnline247

3
Chromeでは何もしません
jjxtra

11

Chrome、Firefox、IE8以上で動作します。

var link=document.createElement('a');
document.body.appendChild(link);
link.href=url ;
link.click();

これは、DOMへのリンクを追加しない場合にも機能します。
ジョニーカー2018年

サーバーから返されたヘッダーが他のことをするように指示していない限り、これは単にurlそこにダウンロードするのではなく、単にに移動します。
Mark Amery

10

を使用した簡単な例 iframe

function downloadURL(url) {
    var hiddenIFrameID = 'hiddenDownloader',
        iframe = document.getElementById(hiddenIFrameID);
    if (iframe === null) {
        iframe = document.createElement('iframe');
        iframe.id = hiddenIFrameID;
        iframe.style.display = 'none';
        document.body.appendChild(iframe);
    }
    iframe.src = url;
};

次に、好きな場所で関数を呼び出します。

downloadURL('path/to/my/file');


10

これは、別のページに移動する必要がない場合に役立ちます。これは基本的なJavaScript関数であるため、バックエンドがJavaScriptである任意のプラットフォームで使用できます。

window.location.assign('any url or file path')

contentTypeを自分で設定できる場合、これがおそらく最も簡単なソリューションです。私はそれを次のように使用しています:window.location.href = downloadFileUrl;
BluE

管理者がユーザーにURLを表示したくない場合は、
Naren Verma

9

わずか7年後、iframeやリンクの代わりにフォームを使用した1行のjQueryソリューションが登場します。

$('<form></form>')
     .attr('action', filePath)
     .appendTo('body').submit().remove();

私はこれをテストしました

  • Chrome 55
  • Firefox 50
  • Edge IE8-10
  • iOS 10(Safari / Chrome)
  • Android Chrome

誰かがこの解決策の欠点を知っているなら、私はそれらについて聞いてとても幸せです。


完全なデモ:

<html>
<head><script src="https://code.jquery.com/jquery-1.11.3.js"></script></head>
<body>
<script>
    var filePath = window.prompt("Enter a file URL","http://jqueryui.com/resources/download/jquery-ui-1.12.1.zip");
    $('<form></form>').attr('action', filePath).appendTo('body').submit().remove();
</script>
</body>
</html>

7
filePathフォームを送信するとaction属性のクエリ文字列が上書きされるため、クエリ文字列がある場合、これは機能しません。
Bobort 2017年

1
私は、フォームへの入力を追加することで、これをworkarrounded:var authInput = $("<input>").attr("type", "hidden").attr("name", "myQsKey").val('MyQsValue'); $('<form></form>') .attr('action', filePath) .append($(authInput)) .appendTo('body').submit().remove();これは等価でアクセスしてるです:filepath?myQsKey=myValue
ハラルドHoerwick

これにより、WebSocketも閉じます。
radu122

2
セットには本当に複雑な方法のようなこのルックスwindow.locationfilePath。ちょうどwindow.location = filePath;同じようにします。
Ivoが

このソリューション自体にマイナス面があるかどうかに関係なく、リンクを介してこれを使用するメリットはありません。(そして、欠点もありdownloadます。この方法で属性を使用して、サーバーが返すヘッダーに関係なくダウンロードが必要であることをブラウザーに伝えることはできませんa。これは、要素で実行できます。)
Mark Amery

5

質問が古すぎるかどうかはわかりませんが、ダウンロードMIMEタイプが正しい限り(たとえば、zipアーカイブ)、window.locationをダウンロードURLに設定できます。

var download = function(downloadURL) {

   location = downloadURL;

});

download('http://example.com/archive.zip'); //correct usage
download('http://example.com/page.html'); //DON'T

5

私は以下のスニペットを使用することになり、ほとんどのブラウザで動作しますが、IEではテストされていません。

let data = JSON.stringify([{email: "test@domain.com", name: "test"}, {email: "anothertest@example.com", name: "anothertest"}]);

let type = "application/json", name = "testfile.json";
downloader(data, type, name)

function downloader(data, type, name) {
	let blob = new Blob([data], {type});
	let url = window.URL.createObjectURL(blob);
	downloadURI(url, name);
	window.URL.revokeObjectURL(url);
}

function downloadURI(uri, name) {
    let link = document.createElement("a");
    link.download = name;
    link.href = uri;
    link.click();
}

更新

function downloadURI(uri, name) {
    let link = document.createElement("a");
    link.download = name;
    link.href = uri;
    link.click();
}

function downloader(data, type, name) {
    let blob = new Blob([data], {type});
    let url = window.URL.createObjectURL(blob);
    downloadURI(url, name);
    window.URL.revokeObjectURL(url);
}

MouseEventいつも使うのではなく、ここで使う意味は何clickですか?そして、なぜそれをクリックする前にドキュメントにリンクを追加するのですか?これは、stackoverflow.com/a/23013574/1709587に示されているより単純なアプローチよりも優れているかもしれませんが、そうである場合は、ここでは説明しません。
マークアメリー

この回答を投稿するのは久しぶりです。これらの不要なコード行の背後に何らかの理由があるかどうか思い出せません。
Abk

3

Imagine Breakerの答えを改善するために、これはFFとIEでサポートされています:

var evt = document.createEvent("MouseEvents");
evt.initMouseEvent("click", true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);

function downloadURI(uri, name) {
    var link = document.createElement("a");
    link.download = name;
    link.href = uri;
    link.dispatchEvent(evt);
}

つまり、dispatchEvent代わりに関数を使用するだけclick()です。


これはどのように改善されましたか?それは単に同じことをするためのより複雑な方法であるように見えます。
マークアメリー

3

たぶん、ダウンロードリンクを新しいタブにドラッグするときのように、ファイルをダウンロードするだけのページをJavaScriptで開くようにします。

Window.open("https://www.MyServer.
Org/downloads/ardiuno/WgiWho=?:8080")

開いたウィンドウで、自動的に閉じるダウンロードページを開きます。


1
これにより、ほとんどのブラウザーがブロックするポップアップウィンドウが作成されます
Ashton Wiersdorf

3

FireFox、Chrome、IEコードのデータをダウンロードするための最も完全で機能する(テスト済みの)コードを以下に示します。Dataがtexareaフィールドにあり、id = ' textarea_area 'であり、filenameはデータがダウンロードされるファイルの名前であるとします。

function download(filename) {
    if (typeof filename==='undefined') filename = ""; // default
    value = document.getElementById('textarea_area').value;

    filetype="text/*";
    extension=filename.substring(filename.lastIndexOf("."));
    for (var i = 0; i < extToMIME.length; i++) {
        if (extToMIME[i][0].localeCompare(extension)==0) {
            filetype=extToMIME[i][1];
            break;
        }
    }


    var pom = document.createElement('a');
    pom.setAttribute('href', 'data: '+filetype+';charset=utf-8,' + '\ufeff' + encodeURIComponent(value)); // Added BOM too
    pom.setAttribute('download', filename);


    if (document.createEvent) {
        if (navigator.userAgent.indexOf('MSIE') !== -1 || navigator.appVersion.indexOf('Trident/') > 0) { // IE
            blobObject = new Blob(['\ufeff'+value]);
            window.navigator.msSaveBlob(blobObject, filename);
        } else { // FF, Chrome
            var event = document.createEvent('MouseEvents');
            event.initEvent('click', true, true);
            pom.dispatchEvent(event);
        }
    } else if( document.createEventObject ) { // Have No Idea
        var evObj = document.createEventObject();
        pom.fireEvent( 'onclick' , evObj );
    } else { // For Any Case
        pom.click();
    }

}

そして、ただ電話する

<a href="javascript:download();">Download</a>

ダウンロード開始用。

ダウンロードダイアログの正しいMIMEタイプを設定する配列は、次のようになります。

// ----------------------- Extensions to MIME --------- //

        // List of mime types
        // combination of values from Windows 7 Registry and 
        // from C:\Windows\System32\inetsrv\config\applicationHost.config
        // some added, including .7z and .dat
    var extToMIME = [
        [".323", "text/h323"],
        [".3g2", "video/3gpp2"],
        [".3gp", "video/3gpp"],
        [".3gp2", "video/3gpp2"],
        [".3gpp", "video/3gpp"],
        [".7z", "application/x-7z-compressed"],
        [".aa", "audio/audible"],
        [".AAC", "audio/aac"],
        [".aaf", "application/octet-stream"],
        [".aax", "audio/vnd.audible.aax"],
        [".ac3", "audio/ac3"],
        [".aca", "application/octet-stream"],
        [".accda", "application/msaccess.addin"],
        [".accdb", "application/msaccess"],
        [".accdc", "application/msaccess.cab"],
        [".accde", "application/msaccess"],
        [".accdr", "application/msaccess.runtime"],
        [".accdt", "application/msaccess"],
        [".accdw", "application/msaccess.webapplication"],
        [".accft", "application/msaccess.ftemplate"],
        [".acx", "application/internet-property-stream"],
        [".AddIn", "text/xml"],
        [".ade", "application/msaccess"],
        [".adobebridge", "application/x-bridge-url"],
        [".adp", "application/msaccess"],
        [".ADT", "audio/vnd.dlna.adts"],
        [".ADTS", "audio/aac"],
        [".afm", "application/octet-stream"],
        [".ai", "application/postscript"],
        [".aif", "audio/x-aiff"],
        [".aifc", "audio/aiff"],
        [".aiff", "audio/aiff"],
        [".air", "application/vnd.adobe.air-application-installer-package+zip"],
        [".amc", "application/x-mpeg"],
        [".application", "application/x-ms-application"],
        [".art", "image/x-jg"],
        [".asa", "application/xml"],
        [".asax", "application/xml"],
        [".ascx", "application/xml"],
        [".asd", "application/octet-stream"],
        [".asf", "video/x-ms-asf"],
        [".ashx", "application/xml"],
        [".asi", "application/octet-stream"],
        [".asm", "text/plain"],
        [".asmx", "application/xml"],
        [".aspx", "application/xml"],
        [".asr", "video/x-ms-asf"],
        [".asx", "video/x-ms-asf"],
        [".atom", "application/atom+xml"],
        [".au", "audio/basic"],
        [".avi", "video/x-msvideo"],
        [".axs", "application/olescript"],
        [".bas", "text/plain"],
        [".bcpio", "application/x-bcpio"],
        [".bin", "application/octet-stream"],
        [".bmp", "image/bmp"],
        [".c", "text/plain"],
        [".cab", "application/octet-stream"],
        [".caf", "audio/x-caf"],
        [".calx", "application/vnd.ms-office.calx"],
        [".cat", "application/vnd.ms-pki.seccat"],
        [".cc", "text/plain"],
        [".cd", "text/plain"],
        [".cdda", "audio/aiff"],
        [".cdf", "application/x-cdf"],
        [".cer", "application/x-x509-ca-cert"],
        [".chm", "application/octet-stream"],
        [".class", "application/x-java-applet"],
        [".clp", "application/x-msclip"],
        [".cmx", "image/x-cmx"],
        [".cnf", "text/plain"],
        [".cod", "image/cis-cod"],
        [".config", "application/xml"],
        [".contact", "text/x-ms-contact"],
        [".coverage", "application/xml"],
        [".cpio", "application/x-cpio"],
        [".cpp", "text/plain"],
        [".crd", "application/x-mscardfile"],
        [".crl", "application/pkix-crl"],
        [".crt", "application/x-x509-ca-cert"],
        [".cs", "text/plain"],
        [".csdproj", "text/plain"],
        [".csh", "application/x-csh"],
        [".csproj", "text/plain"],
        [".css", "text/css"],
        [".csv", "text/csv"],
        [".cur", "application/octet-stream"],
        [".cxx", "text/plain"],
        [".dat", "application/octet-stream"],
        [".datasource", "application/xml"],
        [".dbproj", "text/plain"],
        [".dcr", "application/x-director"],
        [".def", "text/plain"],
        [".deploy", "application/octet-stream"],
        [".der", "application/x-x509-ca-cert"],
        [".dgml", "application/xml"],
        [".dib", "image/bmp"],
        [".dif", "video/x-dv"],
        [".dir", "application/x-director"],
        [".disco", "text/xml"],
        [".dll", "application/x-msdownload"],
        [".dll.config", "text/xml"],
        [".dlm", "text/dlm"],
        [".doc", "application/msword"],
        [".docm", "application/vnd.ms-word.document.macroEnabled.12"],
        [".docx", "application/vnd.openxmlformats-officedocument.wordprocessingml.document"],
        [".dot", "application/msword"],
        [".dotm", "application/vnd.ms-word.template.macroEnabled.12"],
        [".dotx", "application/vnd.openxmlformats-officedocument.wordprocessingml.template"],
        [".dsp", "application/octet-stream"],
        [".dsw", "text/plain"],
        [".dtd", "text/xml"],
        [".dtsConfig", "text/xml"],
        [".dv", "video/x-dv"],
        [".dvi", "application/x-dvi"],
        [".dwf", "drawing/x-dwf"],
        [".dwp", "application/octet-stream"],
        [".dxr", "application/x-director"],
        [".eml", "message/rfc822"],
        [".emz", "application/octet-stream"],
        [".eot", "application/octet-stream"],
        [".eps", "application/postscript"],
        [".etl", "application/etl"],
        [".etx", "text/x-setext"],
        [".evy", "application/envoy"],
        [".exe", "application/octet-stream"],
        [".exe.config", "text/xml"],
        [".fdf", "application/vnd.fdf"],
        [".fif", "application/fractals"],
        [".filters", "Application/xml"],
        [".fla", "application/octet-stream"],
        [".flr", "x-world/x-vrml"],
        [".flv", "video/x-flv"],
        [".fsscript", "application/fsharp-script"],
        [".fsx", "application/fsharp-script"],
        [".generictest", "application/xml"],
        [".gif", "image/gif"],
        [".group", "text/x-ms-group"],
        [".gsm", "audio/x-gsm"],
        [".gtar", "application/x-gtar"],
        [".gz", "application/x-gzip"],
        [".h", "text/plain"],
        [".hdf", "application/x-hdf"],
        [".hdml", "text/x-hdml"],
        [".hhc", "application/x-oleobject"],
        [".hhk", "application/octet-stream"],
        [".hhp", "application/octet-stream"],
        [".hlp", "application/winhlp"],
        [".hpp", "text/plain"],
        [".hqx", "application/mac-binhex40"],
        [".hta", "application/hta"],
        [".htc", "text/x-component"],
        [".htm", "text/html"],
        [".html", "text/html"],
        [".htt", "text/webviewhtml"],
        [".hxa", "application/xml"],
        [".hxc", "application/xml"],
        [".hxd", "application/octet-stream"],
        [".hxe", "application/xml"],
        [".hxf", "application/xml"],
        [".hxh", "application/octet-stream"],
        [".hxi", "application/octet-stream"],
        [".hxk", "application/xml"],
        [".hxq", "application/octet-stream"],
        [".hxr", "application/octet-stream"],
        [".hxs", "application/octet-stream"],
        [".hxt", "text/html"],
        [".hxv", "application/xml"],
        [".hxw", "application/octet-stream"],
        [".hxx", "text/plain"],
        [".i", "text/plain"],
        [".ico", "image/x-icon"],
        [".ics", "application/octet-stream"],
        [".idl", "text/plain"],
        [".ief", "image/ief"],
        [".iii", "application/x-iphone"],
        [".inc", "text/plain"],
        [".inf", "application/octet-stream"],
        [".inl", "text/plain"],
        [".ins", "application/x-internet-signup"],
        [".ipa", "application/x-itunes-ipa"],
        [".ipg", "application/x-itunes-ipg"],
        [".ipproj", "text/plain"],
        [".ipsw", "application/x-itunes-ipsw"],
        [".iqy", "text/x-ms-iqy"],
        [".isp", "application/x-internet-signup"],
        [".ite", "application/x-itunes-ite"],
        [".itlp", "application/x-itunes-itlp"],
        [".itms", "application/x-itunes-itms"],
        [".itpc", "application/x-itunes-itpc"],
        [".IVF", "video/x-ivf"],
        [".jar", "application/java-archive"],
        [".java", "application/octet-stream"],
        [".jck", "application/liquidmotion"],
        [".jcz", "application/liquidmotion"],
        [".jfif", "image/pjpeg"],
        [".jnlp", "application/x-java-jnlp-file"],
        [".jpb", "application/octet-stream"],
        [".jpe", "image/jpeg"],
        [".jpeg", "image/jpeg"],
        [".jpg", "image/jpeg"],
        [".js", "application/x-javascript"],
        [".json", "application/json"],
        [".jsx", "text/jscript"],
        [".jsxbin", "text/plain"],
        [".latex", "application/x-latex"],
        [".library-ms", "application/windows-library+xml"],
        [".lit", "application/x-ms-reader"],
        [".loadtest", "application/xml"],
        [".lpk", "application/octet-stream"],
        [".lsf", "video/x-la-asf"],
        [".lst", "text/plain"],
        [".lsx", "video/x-la-asf"],
        [".lzh", "application/octet-stream"],
        [".m13", "application/x-msmediaview"],
        [".m14", "application/x-msmediaview"],
        [".m1v", "video/mpeg"],
        [".m2t", "video/vnd.dlna.mpeg-tts"],
        [".m2ts", "video/vnd.dlna.mpeg-tts"],
        [".m2v", "video/mpeg"],
        [".m3u", "audio/x-mpegurl"],
        [".m3u8", "audio/x-mpegurl"],
        [".m4a", "audio/m4a"],
        [".m4b", "audio/m4b"],
        [".m4p", "audio/m4p"],
        [".m4r", "audio/x-m4r"],
        [".m4v", "video/x-m4v"],
        [".mac", "image/x-macpaint"],
        [".mak", "text/plain"],
        [".man", "application/x-troff-man"],
        [".manifest", "application/x-ms-manifest"],
        [".map", "text/plain"],
        [".master", "application/xml"],
        [".mda", "application/msaccess"],
        [".mdb", "application/x-msaccess"],
        [".mde", "application/msaccess"],
        [".mdp", "application/octet-stream"],
        [".me", "application/x-troff-me"],
        [".mfp", "application/x-shockwave-flash"],
        [".mht", "message/rfc822"],
        [".mhtml", "message/rfc822"],
        [".mid", "audio/mid"],
        [".midi", "audio/mid"],
        [".mix", "application/octet-stream"],
        [".mk", "text/plain"],
        [".mmf", "application/x-smaf"],
        [".mno", "text/xml"],
        [".mny", "application/x-msmoney"],
        [".mod", "video/mpeg"],
        [".mov", "video/quicktime"],
        [".movie", "video/x-sgi-movie"],
        [".mp2", "video/mpeg"],
        [".mp2v", "video/mpeg"],
        [".mp3", "audio/mpeg"],
        [".mp4", "video/mp4"],
        [".mp4v", "video/mp4"],
        [".mpa", "video/mpeg"],
        [".mpe", "video/mpeg"],
        [".mpeg", "video/mpeg"],
        [".mpf", "application/vnd.ms-mediapackage"],
        [".mpg", "video/mpeg"],
        [".mpp", "application/vnd.ms-project"],
        [".mpv2", "video/mpeg"],
        [".mqv", "video/quicktime"],
        [".ms", "application/x-troff-ms"],
        [".msi", "application/octet-stream"],
        [".mso", "application/octet-stream"],
        [".mts", "video/vnd.dlna.mpeg-tts"],
        [".mtx", "application/xml"],
        [".mvb", "application/x-msmediaview"],
        [".mvc", "application/x-miva-compiled"],
        [".mxp", "application/x-mmxp"],
        [".nc", "application/x-netcdf"],
        [".nsc", "video/x-ms-asf"],
        [".nws", "message/rfc822"],
        [".ocx", "application/octet-stream"],
        [".oda", "application/oda"],
        [".odc", "text/x-ms-odc"],
        [".odh", "text/plain"],
        [".odl", "text/plain"],
        [".odp", "application/vnd.oasis.opendocument.presentation"],
        [".ods", "application/oleobject"],
        [".odt", "application/vnd.oasis.opendocument.text"],
        [".one", "application/onenote"],
        [".onea", "application/onenote"],
        [".onepkg", "application/onenote"],
        [".onetmp", "application/onenote"],
        [".onetoc", "application/onenote"],
        [".onetoc2", "application/onenote"],
        [".orderedtest", "application/xml"],
        [".osdx", "application/opensearchdescription+xml"],
        [".p10", "application/pkcs10"],
        [".p12", "application/x-pkcs12"],
        [".p7b", "application/x-pkcs7-certificates"],
        [".p7c", "application/pkcs7-mime"],
        [".p7m", "application/pkcs7-mime"],
        [".p7r", "application/x-pkcs7-certreqresp"],
        [".p7s", "application/pkcs7-signature"],
        [".pbm", "image/x-portable-bitmap"],
        [".pcast", "application/x-podcast"],
        [".pct", "image/pict"],
        [".pcx", "application/octet-stream"],
        [".pcz", "application/octet-stream"],
        [".pdf", "application/pdf"],
        [".pfb", "application/octet-stream"],
        [".pfm", "application/octet-stream"],
        [".pfx", "application/x-pkcs12"],
        [".pgm", "image/x-portable-graymap"],
        [".pic", "image/pict"],
        [".pict", "image/pict"],
        [".pkgdef", "text/plain"],
        [".pkgundef", "text/plain"],
        [".pko", "application/vnd.ms-pki.pko"],
        [".pls", "audio/scpls"],
        [".pma", "application/x-perfmon"],
        [".pmc", "application/x-perfmon"],
        [".pml", "application/x-perfmon"],
        [".pmr", "application/x-perfmon"],
        [".pmw", "application/x-perfmon"],
        [".png", "image/png"],
        [".pnm", "image/x-portable-anymap"],
        [".pnt", "image/x-macpaint"],
        [".pntg", "image/x-macpaint"],
        [".pnz", "image/png"],
        [".pot", "application/vnd.ms-powerpoint"],
        [".potm", "application/vnd.ms-powerpoint.template.macroEnabled.12"],
        [".potx", "application/vnd.openxmlformats-officedocument.presentationml.template"],
        [".ppa", "application/vnd.ms-powerpoint"],
        [".ppam", "application/vnd.ms-powerpoint.addin.macroEnabled.12"],
        [".ppm", "image/x-portable-pixmap"],
        [".pps", "application/vnd.ms-powerpoint"],
        [".ppsm", "application/vnd.ms-powerpoint.slideshow.macroEnabled.12"],
        [".ppsx", "application/vnd.openxmlformats-officedocument.presentationml.slideshow"],
        [".ppt", "application/vnd.ms-powerpoint"],
        [".pptm", "application/vnd.ms-powerpoint.presentation.macroEnabled.12"],
        [".pptx", "application/vnd.openxmlformats-officedocument.presentationml.presentation"],
        [".prf", "application/pics-rules"],
        [".prm", "application/octet-stream"],
        [".prx", "application/octet-stream"],
        [".ps", "application/postscript"],
        [".psc1", "application/PowerShell"],
        [".psd", "application/octet-stream"],
        [".psess", "application/xml"],
        [".psm", "application/octet-stream"],
        [".psp", "application/octet-stream"],
        [".pub", "application/x-mspublisher"],
        [".pwz", "application/vnd.ms-powerpoint"],
        [".qht", "text/x-html-insertion"],
        [".qhtm", "text/x-html-insertion"],
        [".qt", "video/quicktime"],
        [".qti", "image/x-quicktime"],
        [".qtif", "image/x-quicktime"],
        [".qtl", "application/x-quicktimeplayer"],
        [".qxd", "application/octet-stream"],
        [".ra", "audio/x-pn-realaudio"],
        [".ram", "audio/x-pn-realaudio"],
        [".rar", "application/octet-stream"],
        [".ras", "image/x-cmu-raster"],
        [".rat", "application/rat-file"],
        [".rc", "text/plain"],
        [".rc2", "text/plain"],
        [".rct", "text/plain"],
        [".rdlc", "application/xml"],
        [".resx", "application/xml"],
        [".rf", "image/vnd.rn-realflash"],
        [".rgb", "image/x-rgb"],
        [".rgs", "text/plain"],
        [".rm", "application/vnd.rn-realmedia"],
        [".rmi", "audio/mid"],
        [".rmp", "application/vnd.rn-rn_music_package"],
        [".roff", "application/x-troff"],
        [".rpm", "audio/x-pn-realaudio-plugin"],
        [".rqy", "text/x-ms-rqy"],
        [".rtf", "application/rtf"],
        [".rtx", "text/richtext"],
        [".ruleset", "application/xml"],
        [".s", "text/plain"],
        [".safariextz", "application/x-safari-safariextz"],
        [".scd", "application/x-msschedule"],
        [".sct", "text/scriptlet"],
        [".sd2", "audio/x-sd2"],
        [".sdp", "application/sdp"],
        [".sea", "application/octet-stream"],
        [".searchConnector-ms", "application/windows-search-connector+xml"],
        [".setpay", "application/set-payment-initiation"],
        [".setreg", "application/set-registration-initiation"],
        [".settings", "application/xml"],
        [".sgimb", "application/x-sgimb"],
        [".sgml", "text/sgml"],
        [".sh", "application/x-sh"],
        [".shar", "application/x-shar"],
        [".shtml", "text/html"],
        [".sit", "application/x-stuffit"],
        [".sitemap", "application/xml"],
        [".skin", "application/xml"],
        [".sldm", "application/vnd.ms-powerpoint.slide.macroEnabled.12"],
        [".sldx", "application/vnd.openxmlformats-officedocument.presentationml.slide"],
        [".slk", "application/vnd.ms-excel"],
        [".sln", "text/plain"],
        [".slupkg-ms", "application/x-ms-license"],
        [".smd", "audio/x-smd"],
        [".smi", "application/octet-stream"],
        [".smx", "audio/x-smd"],
        [".smz", "audio/x-smd"],
        [".snd", "audio/basic"],
        [".snippet", "application/xml"],
        [".snp", "application/octet-stream"],
        [".sol", "text/plain"],
        [".sor", "text/plain"],
        [".spc", "application/x-pkcs7-certificates"],
        [".spl", "application/futuresplash"],
        [".src", "application/x-wais-source"],
        [".srf", "text/plain"],
        [".SSISDeploymentManifest", "text/xml"],
        [".ssm", "application/streamingmedia"],
        [".sst", "application/vnd.ms-pki.certstore"],
        [".stl", "application/vnd.ms-pki.stl"],
        [".sv4cpio", "application/x-sv4cpio"],
        [".sv4crc", "application/x-sv4crc"],
        [".svc", "application/xml"],
        [".swf", "application/x-shockwave-flash"],
        [".t", "application/x-troff"],
        [".tar", "application/x-tar"],
        [".tcl", "application/x-tcl"],
        [".testrunconfig", "application/xml"],
        [".testsettings", "application/xml"],
        [".tex", "application/x-tex"],
        [".texi", "application/x-texinfo"],
        [".texinfo", "application/x-texinfo"],
        [".tgz", "application/x-compressed"],
        [".thmx", "application/vnd.ms-officetheme"],
        [".thn", "application/octet-stream"],
        [".tif", "image/tiff"],
        [".tiff", "image/tiff"],
        [".tlh", "text/plain"],
        [".tli", "text/plain"],
        [".toc", "application/octet-stream"],
        [".tr", "application/x-troff"],
        [".trm", "application/x-msterminal"],
        [".trx", "application/xml"],
        [".ts", "video/vnd.dlna.mpeg-tts"],
        [".tsv", "text/tab-separated-values"],
        [".ttf", "application/octet-stream"],
        [".tts", "video/vnd.dlna.mpeg-tts"],
        [".txt", "text/plain"],
        [".u32", "application/octet-stream"],
        [".uls", "text/iuls"],
        [".user", "text/plain"],
        [".ustar", "application/x-ustar"],
        [".vb", "text/plain"],
        [".vbdproj", "text/plain"],
        [".vbk", "video/mpeg"],
        [".vbproj", "text/plain"],
        [".vbs", "text/vbscript"],
        [".vcf", "text/x-vcard"],
        [".vcproj", "Application/xml"],
        [".vcs", "text/plain"],
        [".vcxproj", "Application/xml"],
        [".vddproj", "text/plain"],
        [".vdp", "text/plain"],
        [".vdproj", "text/plain"],
        [".vdx", "application/vnd.ms-visio.viewer"],
        [".vml", "text/xml"],
        [".vscontent", "application/xml"],
        [".vsct", "text/xml"],
        [".vsd", "application/vnd.visio"],
        [".vsi", "application/ms-vsi"],
        [".vsix", "application/vsix"],
        [".vsixlangpack", "text/xml"],
        [".vsixmanifest", "text/xml"],
        [".vsmdi", "application/xml"],
        [".vspscc", "text/plain"],
        [".vss", "application/vnd.visio"],
        [".vsscc", "text/plain"],
        [".vssettings", "text/xml"],
        [".vssscc", "text/plain"],
        [".vst", "application/vnd.visio"],
        [".vstemplate", "text/xml"],
        [".vsto", "application/x-ms-vsto"],
        [".vsw", "application/vnd.visio"],
        [".vsx", "application/vnd.visio"],
        [".vtx", "application/vnd.visio"],
        [".wav", "audio/wav"],
        [".wave", "audio/wav"],
        [".wax", "audio/x-ms-wax"],
        [".wbk", "application/msword"],
        [".wbmp", "image/vnd.wap.wbmp"],
        [".wcm", "application/vnd.ms-works"],
        [".wdb", "application/vnd.ms-works"],
        [".wdp", "image/vnd.ms-photo"],
        [".webarchive", "application/x-safari-webarchive"],
        [".webtest", "application/xml"],
        [".wiq", "application/xml"],
        [".wiz", "application/msword"],
        [".wks", "application/vnd.ms-works"],
        [".WLMP", "application/wlmoviemaker"],
        [".wlpginstall", "application/x-wlpg-detect"],
        [".wlpginstall3", "application/x-wlpg3-detect"],
        [".wm", "video/x-ms-wm"],
        [".wma", "audio/x-ms-wma"],
        [".wmd", "application/x-ms-wmd"],
        [".wmf", "application/x-msmetafile"],
        [".wml", "text/vnd.wap.wml"],
        [".wmlc", "application/vnd.wap.wmlc"],
        [".wmls", "text/vnd.wap.wmlscript"],
        [".wmlsc", "application/vnd.wap.wmlscriptc"],
        [".wmp", "video/x-ms-wmp"],
        [".wmv", "video/x-ms-wmv"],
        [".wmx", "video/x-ms-wmx"],
        [".wmz", "application/x-ms-wmz"],
        [".wpl", "application/vnd.ms-wpl"],
        [".wps", "application/vnd.ms-works"],
        [".wri", "application/x-mswrite"],
        [".wrl", "x-world/x-vrml"],
        [".wrz", "x-world/x-vrml"],
        [".wsc", "text/scriptlet"],
        [".wsdl", "text/xml"],
        [".wvx", "video/x-ms-wvx"],
        [".x", "application/directx"],
        [".xaf", "x-world/x-vrml"],
        [".xaml", "application/xaml+xml"],
        [".xap", "application/x-silverlight-app"],
        [".xbap", "application/x-ms-xbap"],
        [".xbm", "image/x-xbitmap"],
        [".xdr", "text/plain"],
        [".xht", "application/xhtml+xml"],
        [".xhtml", "application/xhtml+xml"],
        [".xla", "application/vnd.ms-excel"],
        [".xlam", "application/vnd.ms-excel.addin.macroEnabled.12"],
        [".xlc", "application/vnd.ms-excel"],
        [".xld", "application/vnd.ms-excel"],
        [".xlk", "application/vnd.ms-excel"],
        [".xll", "application/vnd.ms-excel"],
        [".xlm", "application/vnd.ms-excel"],
        [".xls", "application/vnd.ms-excel"],
        [".xlsb", "application/vnd.ms-excel.sheet.binary.macroEnabled.12"],
        [".xlsm", "application/vnd.ms-excel.sheet.macroEnabled.12"],
        [".xlsx", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"],
        [".xlt", "application/vnd.ms-excel"],
        [".xltm", "application/vnd.ms-excel.template.macroEnabled.12"],
        [".xltx", "application/vnd.openxmlformats-officedocument.spreadsheetml.template"],
        [".xlw", "application/vnd.ms-excel"],
        [".xml", "text/xml"],
        [".xmta", "application/xml"],
        [".xof", "x-world/x-vrml"],
        [".XOML", "text/plain"],
        [".xpm", "image/x-xpixmap"],
        [".xps", "application/vnd.ms-xpsdocument"],
        [".xrm-ms", "text/xml"],
        [".xsc", "application/xml"],
        [".xsd", "text/xml"],
        [".xsf", "text/xml"],
        [".xsl", "text/xml"],
        [".xslt", "text/xml"],
        [".xsn", "application/octet-stream"],
        [".xss", "application/xml"],
        [".xtp", "application/octet-stream"],
        [".xwd", "image/x-xwindowdump"],
        [".z", "application/x-compress"],
        [".zip", "application/x-zip-compressed"]
];

// ----------------------- End of Extensions to MIME --------- //

-私はこれをpdfファイルで試しました。ファイルをダウンロードしていますが、常に破損しています。助言がありますか?ありがとう
Shrivaths Kulkarni

2

私にとってこれは動作し、Chrome v72でテスト済み

function down_file(url,name){
var a = $("<a>")
    .attr("href", url)
    .attr("download", name)
    .appendTo("body");
a[0].click();
a.remove();
}

down_file('https://www.useotools.com/uploads/nulogo[1].png','logo.png')

これは、何年も前にImagine Breakerの回答で示したのと同じアプローチですが、jQueryが必要になるという欠点が追加されています。
マークアメリー

1

FORMタグはどこでも機能し、サーバーで一時的にファイルを作成する必要がないため、FORMタグを使用すると良い結果が得られました。メソッドはこのように機能します。

クライアント側(ページHTML)で、次のような非表示のフォームを作成します

<form method="POST" action="/download.php" target="_blank" id="downloadForm">
    <input type="hidden" name="data" id="csv">
</form>

次に、このJavaScriptコードをボタンに追加します。

$('#button').click(function() {
     $('#csv').val('---your data---');
     $('#downloadForm').submit();
}

サーバー側には、次のPHPコードがありますdownload.php

<?php
header('Content-Type: text/csv');
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename=out.csv');
header('Content-Transfer-Encoding: binary');
header('Connection: Keep-Alive');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . strlen($data));

echo $_REQUEST['data'];
exit();

次のようにデータのzipファイルを作成することもできます。

<?php

$file = tempnam("tmp", "zip");

$zip = new ZipArchive();
$zip->open($file, ZipArchive::OVERWRITE);
$zip->addFromString('test.csv', $_REQUEST['data']);
$zip->close();

header('Content-Type: application/zip');
header('Content-Length: ' . filesize($file));
header('Content-Disposition: attachment; filename="file.zip"');
readfile($file);
unlink($file); 

最良の部分は、すべてがオンザフライで作成および破棄されるため、サーバーに残りのファイルを残さないことです。


0

2013年12月30日にhiteshによって提出された回答は、実際に機能します。少し調整が必要です:

PHPファイルはそれ自体を呼び出すことができます。言い換えれば、saveAs.phpという名前のファイルを作成し、このコードをそこに挿入するだけです...

        <a href="saveAs.php?file_source=YourDataFile.pdf">Download pdf here</a>

    <?php
        if (isset($_GET['file_source'])) {
            $fullPath = $_GET['file_source'];
            if($fullPath) {
                $fsize = filesize($fullPath);
                $path_parts = pathinfo($fullPath);
                $ext = strtolower($path_parts["extension"]);
                switch ($ext) {
                    case "pdf":
                    header("Content-Disposition: attachment; filename=\"".$path_parts["basename"]."\""); // use 'attachment' to force a download
                    header("Content-type: application/pdf"); // add here more headers for diff. extensions
                    break;
                    default;
                    header("Content-type: application/octet-stream");
                    header("Content-Disposition: filename=\"".$path_parts["basename"]."\"");
                }
                if($fsize) {//checking if file size exist
                  header("Content-length: $fsize");
                }
                readfile($fullPath);
                exit;
            }
        }
    ?>

0

これらの関数は、stacktrace.jsで使用されます

/**
 * Try XHR methods in order and store XHR factory.
 *
 * @return <Function> XHR function or equivalent
 */
var createXMLHTTPObject = function() {
    var xmlhttp, XMLHttpFactories = [
        function() {
            return new XMLHttpRequest();
        }, function() {
            return new ActiveXObject('Msxml2.XMLHTTP');
        }, function() {
            return new ActiveXObject('Msxml3.XMLHTTP');
        }, function() {
            return new ActiveXObject('Microsoft.XMLHTTP');
        }
    ];
    for (var i = 0; i < XMLHttpFactories.length; i++) {
        try {
            xmlhttp = XMLHttpFactories[i]();
            // Use memoization to cache the factory
            createXMLHTTPObject = XMLHttpFactories[i];
            return xmlhttp;
        } catch (e) {
        }
    }
}

/**
 * @return the text from a given URL
 */
function ajax(url) {
    var req = createXMLHTTPObject();
    if (req) {
        try {
            req.open('GET', url, false);
            req.send(null);
            return req.responseText;
        } catch (e) {
        }
    }
    return '';
}

これは...ファイルのダウンロードではなく、XHRのためだけのようです?ここでは関連性がわかりません。
マークアメリー

0

クリックイベントの前に呼び出されるマウスダウンイベントを使用することをお勧めします。このようにして、ブラウザーはクリックイベントを自然に処理し、コードの奇妙さを回避します。

(function ($) {


    // with this solution, the browser handles the download link naturally (tested in chrome and firefox)
    $(document).ready(function () {

        var url = '/private/downloads/myfile123.pdf';
        $("a#someID").on('mousedown', function () {
            $(this).attr("href", url);
        });

    });
})(jQuery);

0

Corbachoからの優れたソリューション、私は変数を取り除くために適応しました

function downloadURL(url) {
    if( $('#idown').length ){
        $('#idown').attr('src',url);
    }else{
        $('<iframe>', { id:'idown', src:url }).hide().appendTo('body');
    }
}

0

テスト済みのFirefoxおよびChrome:

var link = document.createElement('a');
link.download = 'fileName.ext'
link.href = 'http://down.serv/file.ext';

// Because firefox not executing the .click() well
// We need to create mouse event initialization.
var clickEvent = document.createEvent("MouseEvent");
clickEvent.initEvent("click", true, true);

link.dispatchEvent(clickEvent);

これは実際にはFirefoxの「クロム」方式のソリューションです(他のブラウザではテストしていません。そのため、コンパイル可能性についてコメントを残してください)


0

ファイルをダウンロードしようとすると、起こり得る小さなことがたくさんあります。ブラウザ間の不一致だけでも悪夢です。私はこの素晴らしい小さなライブラリを使用してしまいました。 https://github.com/rndme/download

いいところは、URLだけでなく、ダウンロードするクライアント側のデータにも柔軟に対応できることです。

  1. テキスト文字列
  2. テキストデータURL
  3. テキストブロブ
  4. テキスト配列
  5. HTML文字列
  6. HTML BLOB
  7. ajaxコールバック
  8. バイナリファイル

-1

アンカータグとPHPを使用してそれを行うことができます、この答えを確認してください

jQuery AjaxによるPDFファイルのダウンロードの呼び出し

HTML
    <a href="www.example.com/download_file.php?file_source=example.pdf">Download pdf here</a>

PHP
<?php
$fullPath = $_GET['fileSource'];
if($fullPath) {
    $fsize = filesize($fullPath);
    $path_parts = pathinfo($fullPath);
    $ext = strtolower($path_parts["extension"]);
    switch ($ext) {
        case "pdf":
        header("Content-Disposition: attachment; filename=\"".$path_parts["basename"]."\""); // use 'attachment' to force a download
        header("Content-type: application/pdf"); // add here more headers for diff. extensions
        break;
        default;
        header("Content-type: application/octet-stream");
        header("Content-Disposition: filename=\"".$path_parts["basename"]."\"");
    }
    if($fsize) {//checking if file size exist
      header("Content-length: $fsize");
    }
    readfile($fullPath);
    exit;
}
?>

CDNクラウドフロントからPDFをロードした場合、ドキュメントのサイズが0kbで強制的にダウンロードされないため、ファイルサイズをチェックしています。これを回避するには、この条件でチェックします

 if($fsize) {//checking if file size exist
      header("Content-length: $fsize");
    }

-1

私はパーティーに遅れていることを知っていますが、上記のImagine Breakerのソリューションのバリエーションである私のソリューションを共有したいと思います。私は彼の解決策を使用しようとしました。彼の解決策が私にとって最もシンプルで簡単に思えるからです。しかし、他の人が言ったように、一部のブラウザーでは機能しなかったので、jqueryを使用していくつかのバリエーションを追加しました。

これが誰かを助けることを願っています。

function download(url) {
  var link = document.createElement("a");
  $(link).click(function(e) {
    e.preventDefault();
    window.location.href = url;
  });
  $(link).click();
}

この関数本体全体は、非常に複雑な方法ですwindow.location.href = url。作成したリンクは何にも使用されません。
マークアメリー

-1

注:すべてのブラウザーでサポートされているわけではありません。

最初からhref属性にファイルのURLを設定せずに、jqueryを使用してファイルをダウンロードする方法を探していました。

jQuery('<a/>', {
    id: 'downloadFile',
    href: 'http://cdn.sstatic.net/Sites/stackoverflow/img/apple-touch-icon@2.png',
    style: 'display:hidden;',
    download: ''
}).appendTo('body');

$("#downloadFile")[0].click();
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>


-1

私はJQueryなしで@rakaloofのソリューションを使用していますここでは必要ないためです)。アイデアをありがとう!以下は、vanillaJSのフォームベースのソリューションです。

const uri = 'https://upload.wikimedia.org/wikipedia/commons/b/bb/Test_ogg_mp3_48kbps.wav';
let form = document.createElement("form");
form.setAttribute('action', uri);
document.body.appendChild(form);
form.submit();
document.body.removeChild(document.body.lastElementChild);

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.