11
10/17
AngularJs 禁止模板缓存
//使用$templateCache清除缓存 // 禁止模板缓存 app.run(function($rootScope, $templateCache) { $rootScope.$on('$routeChangeStart', function(event, next, current) { if (typeof(current) !== 'undefined'){ $templateCache.remove(current.templateUrl); } }); });
07
08/17
AngularJs 登录的简单实现
AngularJs 登录的简单实现 多数AngularJs应用离不开登录操作,最近阅读了一篇关于AngularJs登录的博客,博客中实现的登录系统demo能够应用于多数小型AngularJs应用,实现也并不困难,这里讲讲如何实现这个简单的登录系统。 种子项目 这里使用的种子项目是 angular-seed,登录系统会在这个种子项目的基础上完成 ,github地址:https://github.com/angular/angular-seed/。按照github上`README.md`配置后便可在上面添加我们自己的登录系统。 angular-seed文件目录: app/ <span class="hl...