我想使用 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 is not defined。
我已经包含了cordova.js,这个错误的原因是什么?谢谢。
rgds布伦特