Clear cache in ionic app?

I read so many blogs that it says there is a mistake in

$scope.logout = function() { $ionicHistory.clearCache(); $ionicHistory.clearHistory(); $state.go('home'); }; 

is there any solution to clear the cache using ion code or using some angular code ??

+5
source share
1 answer

with this plugin you can clear the cache

Follow these steps.

1) install this plugin https://www.npmjs.com/package/cordova-plugin-cache

2) write this line where you want to clear the cache

 window.cache.clear() 
+4
source

Source: https://habr.com/ru/post/1235183/


All Articles