AngularJs 完美解决模板缓存 $templateCache

禁止模板缓存  

app.run(function($rootScope, $templateCache) {  

    $rootScope.$on('$routeChangeStart', function(event, next, current) {  

        if (typeof(current) !== 'undefined'){  

            $templateCache.remove(current.templateUrl);  

        }  

    });  

});


app.config之后添加这段代码

你可能感兴趣的:(AngularJs 完美解决模板缓存 $templateCache)