分类

链接

2025 年 4 月
 123456
78910111213
14151617181920
21222324252627
282930  

近期文章

热门标签

新人福利,免费薅羊毛

AngularJs 禁止模板缓存

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

前端 暂无评论 阅读(578)

AngularJs 登录的简单实现

AngularJs 登录的简单实现 多数AngularJs应用离不开登录操作,最近阅读了一篇关于AngularJs登录的博客,博客中实现的登录系统demo能够应用于多数小型AngularJs应用,实现也并不困难,这里讲讲如何实现这个简单的登录系统。 种子项目 这里使用的种子项目是 angular-seed,登录系统会在这个种子项目的基础上完成 ,github地址:https://github.com/angular/angular-seed/。按照github上`README.md`配置后便可在上面添加我们自己的登录系统。 angular-seed文件目录: app/ <span class="hl...

前端 暂无评论 阅读(742)