AngularJS에서 Caching 처리 하기

Feb 22 11:40:38 2016

특정 URI만 no cache 처리 해야하는 경우?

angular-cache-buster 사용

Usage

angular
    .module('app')
    .config(function (/* ... , */httpRequestInterceptorCacheBusterProvider /* ,... */) {
        //Cache everything except rest api requests
        httpRequestInterceptorCacheBusterProvider.setMatchlist([/.*api.*/], true);
        //...
    }
Back