我想使用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: {
}
}
);
}
当我在模拟器或真实设备中运行我的应用程序时,所有命中错误消息:Uncaught ReferenceError:未定义FileTransfer.
我包含了cordova.js,此错误的原因是什么?谢谢.
rgds
布伦特
解决方法:
该插件无法在浏览器中运行,它将引发“未定义新的FileTransfer”错误.使用真实的设备进行测试.