AngularJs 完美解决模板缓存 $templateCache

前端之家收集整理的这篇文章主要介绍了AngularJs 完美解决模板缓存 $templateCache前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

////禁止模板缓存

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

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

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

$templateCache.remove(current.templateUrl);

}

});

});


app.config之后添加这段代码

原文链接:https://www.f2er.com/angularjs/147009.html

猜你在找的Angularjs相关文章