博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[AngularJS] $http cache
阅读量:6076 次
发布时间:2019-06-20

本文共 1452 字,大约阅读时间需要 4 分钟。

By default your HTTP requests with the $https service in Angular are not cached. By setting some options, you can turn caching on.

 

/** * Created by Answer1215 on 12/15/2014. */angular.module('app', ['ngMaterial'])    .controller('MainCtrl', function(BookmarksService, BookmarksCacheFactory) {        var mainCtrl = this;        mainCtrl.bookmarks = [];        mainCtrl.getBookmarks = function() {            BookmarksService.getBookmarks().then(function(response) {                mainCtrl.bookmarks = response.data;            });        }        mainCtrl.removeCache = function() {            BookmarksCacheFactory.remove('./data/bookmarks.json');        }    })    .service('BookmarksService', function($http, BookmarksCacheFactory) {        var BookmarksService = {};        BookmarksService.getBookmarks = function() {            return $http.get('./data/bookmarks.json', {cache: BookmarksCacheFactory});        }        return BookmarksService;    })    .factory('BookmarksCacheFactory', function($cacheFactory) {        return $cacheFactory('bookmarks');    });

 

    
{
{b.title}}
Load Bookmarks
Clear cache

 

"Load bookmarks" only work for the first time clicking the button and load the data.

After click "clear cache", then will load data again.

转载地址:http://oyxgx.baihongyu.com/

你可能感兴趣的文章
我的友情链接
查看>>
多线程之线程池任务管理通用模板
查看>>
CSS3让长单词与URL地址自动换行——word-wrap属性
查看>>
CodeForces 580B Kefa and Company
查看>>
开发规范浅谈
查看>>
Spark Streaming揭秘 Day29 深入理解Spark2.x中的Structured Streaming
查看>>
鼠标增强软件StrokeIt使用方法
查看>>
本地连接linux虚拟机的方法
查看>>
某公司面试java试题之【二】,看看吧,说不定就是你将要做的题
查看>>
BABOK - 企业分析(Enterprise Analysis)概要
查看>>
Linux 配置vnc,开启linux远程桌面
查看>>
NLog文章系列——如何优化日志性能
查看>>
Hadoop安装测试简单记录
查看>>
CentOS6.4关闭触控板
查看>>
ThreadPoolExecutor线程池运行机制分析-线程复用原理
查看>>
React Native 极光推送填坑(ios)
查看>>
Terratest:一个用于自动化基础设施测试的开源Go库
查看>>
修改Windows远程终端默认端口,让服务器更安全
查看>>
扩展器必须,SAS 2.0未必(SAS挺进中端存储系统之三)
查看>>
Eclipse遇到Initializing Java Tooling解决办法
查看>>