有人知道如何在使用带有离子的$ cordovaFileTransfer插件时中止下载吗?
我有一个视图,用户可以选择下载文件,但我想确保如果他们开始下载文件,但是然后按“后退”按钮,它会取消下载并基本上重置视图。似乎正在发生的事情是当下载开始并且视图离开时,即使我在代码中尝试执行类似的操作,下载仍然可以执行其操作:
// If the user leaves, check if a download is in progress.
// - If so, reset the variable, and remove the directory
$scope.$on('$ionicView.leave', function() {
if($scope.downloading === true) {
$scope.downloading = false;
$cordovaFile.removeRecursively(cordova.file.dataDirectory, courseDir)
.then(function (success) {
});
}
});
我尝试过调用$ cordovaFileTransfer.abort(),它告诉我没有这样的功能,即使我在插件中看到了一个中止函数本身。有没有人对此有任何见解,因为我觉得这将是人们正在寻找的一种常见功能。
谢谢!
答案 0 :(得分:1)
我最终通过直接进入ng-cordova.js文件并添加了如下的中止函数来解决这个问题:
我在工厂对象内部创建了一个名为ft的全局变量,并删除了“download”函数中的变量实例化,以使其对所有函数都是全局的。
/* globals FileTransfer: true */
angular.module('ngCordova.plugins.fileTransfer', [])
.factory('$cordovaFileTransfer', ['$q', '$timeout', function ($q, $timeout) {
var ft = new FileTransfer();
return {
download: function (source, filePath, options, trustAllHosts) {
var q = $q.defer();
var uri = (options && options.encodeURI === false) ? source : encodeURI(source);
if (options && options.timeout !== undefined && options.timeout !== null) {
$timeout(function () {
ft.abort();
}, options.timeout);
options.timeout = null;
}
ft.onprogress = function (progress) {
q.notify(progress);
};
q.promise.abort = function () {
ft.abort();
};
ft.download(uri, filePath, q.resolve, q.reject, trustAllHosts, options);
return q.promise;
},
upload: function (server, filePath, options, trustAllHosts) {
var q = $q.defer();
var uri = (options && options.encodeURI === false) ? server : encodeURI(server);
if (options && options.timeout !== undefined && options.timeout !== null) {
$timeout(function () {
ft.abort();
}, options.timeout);
options.timeout = null;
}
ft.onprogress = function (progress) {
q.notify(progress);
};
q.promise.abort = function () {
ft.abort();
};
ft.upload(filePath, uri, q.resolve, q.reject, options, trustAllHosts);
return q.promise;
},
/* Here is the added abort function that will
kill the download or upload by calling $cordovaFileTransfer.abort() */
abort: function() {
var q = $q.defer;
ft.abort();
q.resolve;
return q.promise;
}
};
}]);
答案 1 :(得分:0)
Abort被添加到$ cordovaFileTransfer的下载方法的较新版本中,因此如果您升级ngcordova,以下代码可以正常工作:
var transferPromise = $cordovaFileTransfer.download(url, targetPath, {}, true);
transferPromise.then(
function () { },
function () { },
function (progress) { }
);
.
.
.
transferPromise.abort();