摘要:
Using the Chrome console, you can access your AngularJS injectable services. This is down and dirty debugging, and can be a lifesaver in troubling tim... 阅读全文
摘要:
Using Angular, you can actually access the scope and other things from the console, so when you have a live web page, you can dive in and grab things ... 阅读全文
摘要:
This function that we just set up is what's called a link function, and it's actually a very small part of a larger API. If I cut this and instead I r... 阅读全文
摘要:
With Angular scopes, you have access to a$destroyevent that can be used to watch $scope events. This is used for cleanup, and gives you a final opport... 阅读全文
摘要:
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... 阅读全文
摘要:
Annotation Order:It's considered good practice to dependency inject Angular's providers in before our own custom ones.Bad:// randomly ordered dependen... 阅读全文
摘要:
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... 阅读全文