web-dev-qa-db-fra.com

Désactivation du cache AngularJS $ http

J'essaie de désactiver le cache dans l'application AngularJS, mais cela ne fonctionne pas avec le code suivant:

$http.get("myurl",{cache:false})

Lorsque j'utilise "myurl&random="+Math.random(), le cache est désactivé. mais j'aimerais une approche différente.

14
Luffy Ding

Ceci est déjà répondu ici .

Coller un extrait de code à partir du lien pour votre référence.

myModule.config(['$httpProvider', function($httpProvider) {
    //initialize get if not there
    if (!$httpProvider.defaults.headers.get) {
        $httpProvider.defaults.headers.get = {};    
    }    

    // Answer edited to include suggestions from comments
    // because previous version of code introduced browser-related errors

    //disable IE ajax request caching
    $httpProvider.defaults.headers.get['If-Modified-Since'] = 'Mon, 26 Jul 1997 05:00:00 GMT';
    // extra
    $httpProvider.defaults.headers.get['Cache-Control'] = 'no-cache';
    $httpProvider.defaults.headers.get['Pragma'] = 'no-cache';
}]);
30
user6408463

Voici ce que j'ai fait, changez-le simplement en

 $http.get("myurl",{headers:{'Cache-Control': 'no-cache'}})
8
karma

essayez comme ça

  $state(' 'app.name', {
 url: '/name',
cache: false,
 controller:'MainCtrl',
 templateUrl:'templates/name.html'
 })
0
Nikhil Ghuse
myApp.config(function ($routeProvider) {
        $routeProvider.
            when('/', {controller: 'MyCtrl', templateUrl: '/eshop/myConfig'})
})

.controller('MyCtrl', function ($scope, $templateCache) {
    $templateCache.remove('/eshop/myConfig');
    // or
    $templateCache.removeAll();
});

j’ai trouvé quelque chose dans cette URL. Jetez un coup d’œil à cela Angularjs - Comment vider les caches de $ routeProvider de templateUrl

0
naresh vadlakonda