MOCKSTACKS
EN
Questions And Answers

More Tutorials









Angular $scopes

A function available in the entire app


Be careful, this approach might be considered as a bad design for angular apps, since it requires programmers to remember both where functions are placed in the scope tree, and to be aware of scope inheritance. In many cases it would be preferred to inject a service (Angular practice - using scope inheritance vs injection.

This example only show how scope inheritance could be used for our needs, and the how you could take advantage of it, and not the best practices of designing an entire app.

In some cases, we could take advantage of scope inheritance, and set a function as a property of the rootScope. This way - all of the scopes in the app (except for isolated scopes) will inherit this function, and it could be called from anywhere in the app.

angular.module('app', [])
.run(['$rootScope', function($rootScope){
 var messages = []
 $rootScope.addMessage = function(msg){
 messages.push(msg);
 }
}]);
<div ng-app="app">
 <a ng-click="addMessage('hello world!')">it could be accsessed from here</a>
 <div ng-include="inner.html"></div>
</div>
inner.html:
<div>
 <button ng-click="addMessage('page')">and from here to!</button>
</div>


Conclusion

In this page (written and validated by ) you learned about AngularJS $scopes . What's Next? If you are interested in completing AngularJS tutorial, your next topic will be learning about: AngularJS Avoid inheriting primitive values.



Incorrect info or code snippet? We take very seriously the accuracy of the information provided on our website. We also make sure to test all snippets and examples provided for each section. If you find any incorrect information, please send us an email about the issue: mockstacks@gmail.com.


Share On:


Mockstacks was launched to help beginners learn programming languages; the site is optimized with no Ads as, Ads might slow down the performance. We also don't track any personal information; we also don't collect any kind of data unless the user provided us a corrected information. Almost all examples have been tested. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. By using Mockstacks.com, you agree to have read and accepted our terms of use, cookies and privacy policy.