在8月份一个项目机会下,决定真正完整地学习使用AngularJS 1.3,下面是我一些总结。 PS:有些人很抵触AngularJS这种框架,认为它是在办坏事,装高调,我是认为任何能广泛传播的框架存在不是没有原因,总会有它适用的场景,真正使用了才能发觉东西好坏。什么是AngularJS 首先A...
分类:
Web程序 时间:
2015-10-11 21:24:22
阅读次数:
235
1、ng-app此指令声明angular的边界,也就是应用程序入口(当然没有ng—app指令的时候也不要奇怪,还有其他方法可以做入口,angular.bootstrap(element,[modules],config))2、ng-bind 就是绑定模板,其实和{{hash}}的效果是一样的,不过要...
分类:
Web程序 时间:
2015-09-29 13:09:58
阅读次数:
178
angularJS四个特性1.MVC {{greeting.text}},Angular function HelloAngular($scope) { $scope.gr...
分类:
Web程序 时间:
2015-09-29 12:58:45
阅读次数:
277
图灵社区 : 图书 : AngularJS入门教程 http://www.ituring.com.cn/book/1206AngularJS 教程 | 菜鸟教程 http://www.runoob.com/angularjs/angularjs-tutorial.html
分类:
Web程序 时间:
2015-09-23 23:16:50
阅读次数:
155
MainApp.directive('ngHtml', function () { function watch(scope, el, watchExp){ scope.$watch(watchExp , function(html){ ...
分类:
Web程序 时间:
2015-09-22 23:40:46
阅读次数:
226
参考:http://campus.codeschool.com/courses/shaping-up-with-angular-js/contents 参考:http://www.ituring.com.cn/article/13474 1)载入AngularJS脚本 <script?src="http://cdn.bootcss.com/angular.js/1....
分类:
Web程序 时间:
2015-09-20 13:21:39
阅读次数:
155
ng-repeat用来遍历一个集合或为集合中的每个元素生成一个模板实例。集合中的每个元素都会被赋予自己的模板和作用域。同时每个模板实例的作用域中都会暴露一些特殊的属性。 $index:遍历的进度(0 ... length-1) $first:当元素是遍历的第一个时值为true $middl...
分类:
Web程序 时间:
2015-09-19 12:11:46
阅读次数:
137
还有几天就要去就要去新公司报道了。新公司是要用到 AngularJs的. 虽然以前简单看过。 但是没有详细了解过。趁这几天恶补一下.早就听说了 出了2.0。 且完全和 1.0 不一样.. 这让我很忧伤.于是在学习之前查了一下http://www.oschina.net/news/65407/is-a...
分类:
Web程序 时间:
2015-09-05 23:39:06
阅读次数:
291
基础官方:http://docs.angularjs.organgularjs官方网站已被墙,可看http://www.ngnice.com/;官方zip下载包https://github.com/dolymood/angular-packages,已增加docs服务,输入地址即可,例如:http:...
分类:
Web程序 时间:
2015-08-26 22:18:41
阅读次数:
242