0

Webサイトで画像のURLを取得できますが、画像をローカルドライブにダウンロードしたいと思います。私は実際に標準のダウンロードプロンプトが必要です。FirefoxアドオンSDKを使用して(Javascriptを使用して)これを行うための最良の方法は何ですか?

4

1 に答える 1

2

そこで、FirefoxのnsIWebBrowserPersistドキュメントから持ち上げたコードを使用して、これをまとめました。関係するスコープの問題のいくつかを理解していません。これは、保存する場所や方法をユーザーに求めるプロンプトを表示しません。私の目的ではそれは機能しますが、そこにある場合はより良い解決策が欲しいです。

function DownloadImage(aURLToDownload, aSaveToFile)
{
    try {

        // download from: aURLToDownload
        var downloadURI = Cc["@mozilla.org/network/io-service;1"].getService(Ci.nsIIOService).newURI(aURLToDownload, null, null);
        console.log("Saving from: " + aURLToDownload);

        // download destination
        console.log("Saving as: " + aSaveToFile);
        var outputFile = Cc["@mozilla.org/file/local;1"].createInstance(Ci.nsILocalFile); 
        outputFile.initWithPath(aSaveToFile)

        var persist = Cc["@mozilla.org/embedding/browser/nsWebBrowserPersist;1"].createInstance(Ci.nsIWebBrowserPersist);

        persist.progressListener = {
            // onComplete: function(){
                // alert("Download complete: " + aSaveToFile);
            // }
            onProgressChange: function(aWebProgress, aRequest, aCurSelfProgress, aMaxSelfProgress, aCurTotalProgress, aMaxTotalProgress) {
                var percentComplete = (aCurTotalProgress/aMaxTotalProgress)*100;
                console.log(percentComplete +"%");
            }
            // onStateChange: function(aWebProgress, aRequest, aStateFlags, aStatus) {
            // }
        };

        persist.saveURI(downloadURI, null, null, null, "", outputFile);
    } catch (e) {
        console.log(e);
    }
}
于 2012-12-27T06:45:02.527 に答える