TypeError: Object [object Object] has no method 'getFile' - Ionic
问题 I have the below code to get json data and store it in a storage space in the device,I have tried the below code, ionic.Platform.ready(function() { $cordovaFile.createFile(cordova.file.applicationStorageDirectory, 'file.txt', true) $ionicLoading.show(); $http.post("http://example.com/data/get_data"). success(function(data) { //console.log(data); $ionicLoading.hide(); $cordovaFile.writeFile(cordova.file.applicationStorageDirectory + 'file.txt', data, { 'append': false }).then(function(result)