在AngularJS中缓存Blob图像

时间:2016-01-24 13:14:35

标签: angularjs caching data-url

我在AngularJS中有一个WebApp,并从REST服务加载data-url图像。

我想缓存这些数据网址。

这可能吗?

gerenal get function (我到处使用)

return $http.get(url)
    .then(function (response) {
        var call = new HttpCall("get", url, null, response.data);
        if (logging.http) {
            $log.debug(call);
        }
        return call;
    }, function (error) {
        var call = new HttpCall("get", url, null, error);
        if (logging.http || logging.error) {
            $log.error(call);
        }
        return call;
    });

HttpCall只是一个容器,用于更好的日志记录输出。答案存储在call.response中,错误存储在call.error

0 个答案:

没有答案