我正在使用 PhoneGap (Cordova) 文件传输和 onProgress 函数向用户显示下载进度。
到目前为止它运行得很好,但是我试图同时进行多个下载,并且我需要在 onProgress 事件中有一个有效的“目标”属性,但它总是读为 null。
这是为什么?有什么方法可以显示目标,就像它提供信息的文件名一样?
var ft0 = new FileTransfer();
ft0.onprogress = onProgress;
ft0.download( url, filePath, onDownloadSuccess, onDownloadError );
function onProgress(progressEvent) {
....
这是 onProgress 事件的属性读数
type: undefined;
bubbles: false;
cancelBubble: false;
cancelable: false;
lengthComputable: true;
loaded: 5510;
total: 56456;
target: null;
任何帮助将非常感激。
谢谢。