分类

链接

2017 年 10 月
 1
2345678
9101112131415
16171819202122
23242526272829
3031  

近期文章

热门标签

新人福利,免费薅羊毛

AngularJs 禁止模板缓存

//使用$templateCache清除缓存 // 禁止模板缓存   app.run(function($rootScope, $templateCache) {       $rootScope.$on('$routeChangeStart', function(event, next, current) {           if (typeof(current) !== 'undefined'){               $templateCache.remove(current.templateUrl);           }       });   });  

前端 暂无评论 阅读(549)