Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've seen 2 types of controllers definition:

angular.module('myApp.controllers',[])
  .controller('MainCtrl', ['$scope'], function($scope){
   //controller code
}

And a simple:

function MainCtrl($scope) {
  //controller code
}

What's the different? Which one is the preferred one?

share|improve this question
1  
The same question as stackoverflow.com/questions/13362921/… – pkozlowski.opensource Jan 2 at 10:43

1 Answer

up vote 2 down vote accepted

The difference is that the first is a controller inside the module. The second method is a controller on the global ( on the Window object! ).

Like you would have heard already, polluting the global object is a bad idea. Hence, the second method is not preferred (But is used for quick prototyping to show off a feature easily and is easier to type. So this one is used in pretty much all examples.)

The first way, i.e

angular.module('myApp.controllers',[])
  .controller('MainCtrl', ['$scope'], function($scope){
   //controller code
}

is the preferred way and should be used in all for production applications.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.