Skip to content

Drop-in replacement for $http. It will cache responses for GET requests and return them while in offline

License

Notifications You must be signed in to change notification settings

mentatxx/ionic-http-offline-cache

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ionic-http-offline-cache

Drop-in replacement for $http. It will cache responses for GET requests and return them while in offline

Usage

Just replace "$http" service with "httpOfflineCache".

Example:

angular.module('starter').
    controller('StarterPage', function($scope, httpOfflineCache){
        var postNumber = 1;
        $scope.reqNumber = 0;
        $scope.data = {
            userId: 0,
            id: 0,
            title: '',
            body: ''
        };
        $scope.sendRequest = function() {
            // postNumber++;
            $scope.reqNumber++;
            httpOfflineCache.get('http://jsonplaceholder.typicode.com/posts/'+postNumber).then(function(response){
                $scope.data = response.data;
                $scope.status = response.status;
                $scope.state = 'Responded';
            }).catch(function(response){
                $scope.status = response.status;
                $scope.state = 'Request failed';
            });
        };
    });

Optional dependencies

It highly recommended you to add "sqlite" and "network" cordova plugins. It will help to faster and better detect offline mode, and use sqlite file storage instead of small Html Local storage.

This optional plugins are recognized by httpOfflineCache:

  • ionic plugin add cordova-plugin-network-information
  • ionic plugin add https://github.com/litehelpers/Cordova-sqlite-storage.git

Note. There is no specific dependency on Ionic framework. But AngularJS and Cordova are required, and they are both available for Ionic from a box.

About

Drop-in replacement for $http. It will cache responses for GET requests and return them while in offline

Resources

License

Stars

Watchers

Forks

Packages

No packages published