0
されていない私のコードは私のアプリのJSでこの
app.controller('GalleryCtrl', ['$scope', '$cordovaFileTransfer', function($scope, $cordovaFileTransfer) {
$scope.testFileDownload = function() {
var url = "http://www.gajotres.net/wp-content/uploads/2015/04/logo_radni.png";
var filename = url.split("/").pop();
var targetPath = cordova.file.externalRootDirectory + filename;
alert(targetPath);
$cordovaFileTransfer.download(url, targetPath, {}, true).then(function (result) {
alert('Success!');
}, function (error) {
alert('Error!');
}, function (progress) {
// PROGRESS HANDLING GOES HERE
});
};
}])
ある
関数ではありません私はngCordovaを定義しました
CLIでインストールしましたか?コードバプラグインの追加cordova-plugin-file-transfer – tier1