Я автор angular-http-etag
, поэтому я могу говорить только о функциях этого модуля. Он украшает услугу Angular $http
, чтобы вы могли указывать запросы, которые вы хотите кэшировать. Вот пример использования я обеспечиваю в readme.md:
angular
.module('myApp', [
'http-etag'
])
.config(function (httpEtagProvider) {
httpEtagProvider
.defineCache('persistentCache', {
cacheService: 'localStorage'
})
})
.controller('MyCtrl', function ($http) {
var self = this
$http
.get('/my_data.json', {
etagCache: 'persistentCache'
})
.success(function (data, status, headers, config, itemCache) {
// Modify the data from the server
data._fullName = data.first_name + ' ' + data.last_name
// Update the cache with the modified data
itemCache.set(data)
// Assign to controller property
self.fullName = data._fullName
})
// Synchronous method called if request was previously cached
.cached(function (data, status, headers, config, itemCache) {
self.fullName = data._fullName
})
.error(function (data, status) {
// 304: 'Not Modified'--Etag matched, cached data is fresh
if (status != 304) alert('Request error')
})
})
Единственное, что требуется на стороне сервера, чтобы убедиться, что сервер посылает заголовок на ETag
ответ. Вы можете найти информацию о том, как проверять заголовки ответов в Chrome здесь: https://developers.google.com/web/tools/chrome-devtools/profile/network-performance/resource-loading#view-details-for-a-single-resource
Если вы когда-нибудь узнает ваше решение, пожалуйста, поделитесь – garrettmac