我想使用FileTransfer从Web服务器下载文件,代码如下:
function downloadFile(url) {
var fileTransfer = new FileTransfer();
var uri = encodeURI(url);
var filepath="www/download/";
fileTransfer.onprogress = function(progressEvent) {
if (progressEvent.lengthComputable) {
loadingStatus.setPercentage(progressEvent.loaded / progressEvent.total);
} else {
loadingStatus.increment();
}
};
fileTransfer.download(
uri,
filePath,
function(entry) {
console.log("download complete: " + entry.fullPath);
},
function(error) {
console.log("download error source " + error.source);
console.log("download error target " + error.target);
console.log("upload error code" + error.code);
},
false,
{
headers: {
}
}
);
}
当我在模拟器或真正的devide中运行我的应用程序时,所有命中错误消息:Uncaught ReferenceError:FileTransfer未定义。
我已经包含了cordova.js,这个错误的原因是什么?感谢。
RGDS 布伦特
答案 0 :(得分:2)
此插件无法在浏览器中运行,它会抛出“未定义新的FileTransfer”错误。使用真实设备进行测试。
答案 1 :(得分:1)
您需要安装phonegap插件:
$phonegap local plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-file.git
$phonegap local plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer.git
如果您已安装,可能需要重建phonegap平台:
$phonegap build android