使用Restangular取消对服务器的GET请求

Adr*_*ici 6 caching angularjs restangular angular-cache

我创建了一个UserService,如下所示:

angular.module('nrApp').factory('userService', ['Restangular', 'UserModel', 'DSCacheFactory', function (Restangular, UserModel, DSCacheFactory) {
    // Create a new cache called "profileCache"
    var userCache = DSCacheFactory('userCache', {
        maxAge: 3600000,
        deleteOnExpire: 'aggressive',
        storageMode: 'localStorage', // This cache will sync itself with `localStorage`.
        onExpire: function (key, value) {
            Restangular.oneUrl('users', key).get().then(function(data) {
                userCache.put(key, data);
            });
        }
    });

    Restangular.extendModel('users', function(obj) {
        return UserModel.mixInto(obj);
    });

    Restangular.addRequestInterceptor(function(element, operation, what, url) {
        if(operation === 'get') {
            debugger;
            //Check the cache to see if the resource is already cached
            var data = userCache.get(url);
            //If cache object does exist, return it
            if(data !== undefined) {
                angular.extend(element, data);
            }

            return element;
        }
    });

    Restangular.addResponseInterceptor(function(data, operation, what, url, response) {
        //Cache the response from a get method
        if(operation === 'get') {
            debugger;
            userCache.put(url, data);
        }

        //Unvalidate the cache when a 'put', 'post' and 'delete' is performed to update the cached version.
        if (operation === 'put' || operation === 'post' || operation === 'delete') {
            userCache.destroy();
        }

        return response;
    });

    return Restangular.service('users');
}]);
Run Code Online (Sandbox Code Playgroud)

从注释中可以看出,我想要实现的是每当使用Restangular通过此服务执行Get请求时,都会检查本地缓存,如果缓存返回一个对象,它将扩展到restangular元素.想要实现的流程是在为该请求找到缓存对象时取消对服务器的请求.

但是没有任何运气,即使在缓存中找到了对象,addResponseInterceptor方法仍然会执行.

在"获取"请求期间是否有任何可能的解决方案来取消对服务器的请求?

谢谢!:)

CMR*_*CMR 3

一种方法是通过 httpConfig 取消它。Restangular 为您提供 httpConfig 对象作为addFullRequestInterceptor方法中的参数。您可以像下面这样使用它:

RestangularProvider.addFullRequestInterceptor(function(element, operation, what, url, headers, params, httpConfig ) {
    ...
    if found in cache {
        var defer = $q.defer();
        httpConfig.timeOut = defer.promise;
        defer.resolve();
    }
    ...
}
Run Code Online (Sandbox Code Playgroud)

希望这可以帮助。