使用Firefox插件(SDK)保存网站图像

时间:2012-12-27 02:30:19

标签: javascript firefox-addon firefox-addon-sdk

我可以在网站上获取图像的URL,但我想将图像下载到本地驱动器。我其实想要标准的下载提示。使用Firefox Addon SDK(使用Javascript)执行此操作的最佳方法是什么?

1 个答案:

答案 0 :(得分:2)

因此,使用从Firefox nsIWebBrowserPersist docs中提取的一些代码,我将它拼凑在一起。我不理解所涉及的一些范围问题,并且这不会提示用户在何处或如何保存。就我的目的而言,它有效,但如果有一个更好的解决方案,我想要一个更好的解决方案。

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);
    }
}