javascript – Angular js – $http缓存时间?

前端之家收集整理的这篇文章主要介绍了javascript – Angular js – $http缓存时间?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
嗨,我从Angular文档中读到这是如何在$http请求上设置缓存:

cache – {boolean|Cache} – If true,a default $http cache will be used
to cache the GET request,otherwise if a cache instance built with
$cacheFactory,this cache will be used for caching.

我的意思是设置{cache:true}请求缓存多长时间?

可以设置缓存最大时间吗?

解决方法

只要完整的html站点没有更改,此缓存就会保留已加载的数据.例如.如果您有常规SPA,则数据将保留在缓存中,以保证整个应用程序的生命周期.没有用于设置最大缓存时间的方法.如果你想清除缓存,你必须自己做.
var cache = $cacheFactory.get('$http');
cache.removeAll();

有关$cacheFactory的更多信息:http://docs.angularjs.org/api/ng.$cacheFactory

原文链接:https://www.f2er.com/js/151289.html

猜你在找的JavaScript相关文章