上一页 1 ··· 470 471 472 473 474 475 476 477 478 ··· 491 下一页
摘要: Directive can use another directive though 'require' keyword.angular.module('docsTabsExample', []).directive('myTabs', function() { return { restr... 阅读全文
posted @ 2014-12-19 05:21 Zhentiw 阅读(233) 评论(0) 推荐(0)
摘要: We have code like:var numbers = [1,2,3];for(var i in numbers){ setTimeout(function(){console.log(numbers[i]); }, 0);}//3//3//3Note:1. function... 阅读全文
posted @ 2014-12-17 18:47 Zhentiw 阅读(342) 评论(0) 推荐(0)
摘要: The ui-router library for AngularJS provides the ability to name views within your application. This is useful for dividing up your application into s... 阅读全文
posted @ 2014-12-17 17:03 Zhentiw 阅读(737) 评论(0) 推荐(0)
摘要: ui-router has the powerful ability to define abstract states, or states that can't be navigated to, but are useful for defining a set of states with s... 阅读全文
posted @ 2014-12-17 03:30 Zhentiw 阅读(849) 评论(0) 推荐(0)
摘要: Introduce to basic $stateProvider.state() with $stateParams services. Understand how nested router works.Key Value:ng-href="#/list/{{item.name}}".stat... 阅读全文
posted @ 2014-12-16 23:42 Zhentiw 阅读(431) 评论(0) 推荐(0)
摘要: By default your HTTP requests with the $https service in Angular arenotcached. By setting some options, you can turn caching on./** * Created by Answe... 阅读全文
posted @ 2014-12-15 23:57 Zhentiw 阅读(1181) 评论(0) 推荐(0)
摘要: TimelineLite is a piece of the Greensock TweenMax library that provides the ability to create sequenced animation with very little code or setup.Key v... 阅读全文
posted @ 2014-12-15 17:41 Zhentiw 阅读(1020) 评论(0) 推荐(0)
摘要: /* 1. Query Operators*/db.posts.find({ viewsCount: {$get: 1000, $lte: 3000}}, {_id: 0, viewsCount: 1, title: 1})// $indb.posts.find({ categor... 阅读全文
posted @ 2014-12-14 18:09 Zhentiw 阅读(591) 评论(0) 推荐(0)
摘要: Directives have dependencies too, and you can use dependency injection to provide services for your directives to use.Bad: If you want to use in anot... 阅读全文
posted @ 2014-12-13 21:26 Zhentiw 阅读(382) 评论(0) 推荐(0)
摘要: MongoDB is JSON Document:How to start MongoDB client:mongod //start the servermongo // start the cliHow to restore a database:mongorestorecan create a... 阅读全文
posted @ 2014-12-12 05:11 Zhentiw 阅读(399) 评论(0) 推荐(0)
上一页 1 ··· 470 471 472 473 474 475 476 477 478 ··· 491 下一页