Phonegap:new FileTransfer();返回undefined

时间:2014-04-24 10:24:33

标签: android cordova file-transfer

我想使用FileTransfer在phonegap中下载文件,但我只得到“ReferenceError:FileTransfer未定义”错误(以下代码中的第3行)。 我正在使用phonegap 3.3.0; File和FileTransfer插件已添加到config.xml(并显示在build.phonegap.com上)。 我正在通过网络界面构建

function DescargaRepo2(id) {
    try {
        var fileDownloadEdit = new FileTransfer();
        alert("hecho: " + fileDownloadEdit);
    } catch (e) {
        alert("El error de FileTransfer es: " + e);
    }
    var uri = encodeURI("http://dl.dropbox.com/u/97184921/editme.txt");
    var filepath = "www/data/";
    fileDownloadEdit.download(
    uri, filepath, function(entry) {
        console.log("download complete: " + entry.fullPath);
        alert("File Downloaded. Click 'Read Editable Downloaded File' to see text");
    }, function(error) {
        //alert("download error source " + error.source);
        //alert("download error target " + error.target);
        alert("error code" + error.code);
    });
}

0 个答案:

没有答案