上一页 1 ··· 481 482 483 484 485 486 487 488 489 ··· 498 下一页
摘要: AngularJS animations and TweenLite make it really easy to create cool 3d effects in your application. Hello Greensock! ... 阅读全文
posted @ 2014-11-27 17:27 Zhentiw 阅读(675) 评论(0) 推荐(0)
摘要: There are situations where you might want to add additional methods toangular.module. This is easy to accomplish, and can be a handy technique. //F... 阅读全文
posted @ 2014-11-27 16:55 Zhentiw 阅读(309) 评论(0) 推荐(0)
摘要: Annotation Order:It's considered good practice to dependency inject Angular's providers in before our own custom ones.Bad:// randomly ordered dependen... 阅读全文
posted @ 2014-11-25 17:11 Zhentiw 阅读(518) 评论(0) 推荐(0)
摘要: Module definitionsAngular modules can be declared in various ways, either stored in a variable or using the getter syntax. Use the getter syntax at al... 阅读全文
posted @ 2014-11-25 17:03 Zhentiw 阅读(317) 评论(0) 推荐(0)
摘要: ControllerAs:Use thecontrollerAssyntax always as it aids in nested scoping and controller instance reference.Bad: {{ someObject }}Good: {{ main.some... 阅读全文
posted @ 2014-11-25 16:40 Zhentiw 阅读(355) 评论(0) 推荐(0)
摘要: Also read:http://www.cnblogs.com/Answer1215/p/3941966.htmlUsing ngAnimate://!annotate="YourApp" Your AngularJS Module|Replace this or ngModule with th... 阅读全文
posted @ 2014-11-24 21:55 Zhentiw 阅读(510) 评论(0) 推荐(0)
摘要: Using for..of statement:function* greeting(){ console.log(`Generators are "lazy"`); yield "How"; console.log(`I'm not called until the second... 阅读全文
posted @ 2014-11-23 21:37 Zhentiw 阅读(170) 评论(0) 推荐(0)
摘要: Generators in ECMAscript 6 are first-class coroutines that produce encapsulated suspended execution(暂停执行) contexts.Yield values and iterate over them ... 阅读全文
posted @ 2014-11-23 21:05 Zhentiw 阅读(390) 评论(0) 推荐(0)
摘要: The spread operator (...) allows you to "explode" an array into its individual elements.Spreate an array:console.log([1,2,3]); // [1, 2, 3] conso... 阅读全文
posted @ 2014-11-23 01:41 Zhentiw 阅读(468) 评论(0) 推荐(0)
摘要: Where destructuring in ES6 allows you to easily get properties out of an object, this shorthand property syntax allows you to easily push properties i... 阅读全文
posted @ 2014-11-23 01:30 Zhentiw 阅读(338) 评论(0) 推荐(0)
上一页 1 ··· 481 482 483 484 485 486 487 488 489 ··· 498 下一页