Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AngularJS controllers and "use strict"

I recently started using JSHint and it is requiring me to use the function form of "use strict". Since then, AngularJS throws an error:

"Error: Argument 'webAddressController' is not a function, got undefined"

When I remove the function form of "use strict" the controller loads fine.

Controller:

(function () {     "use strict";      function webAddressController($scope, $rootScope, web_address_service) {              // Do things     }  }()); 

Does anyone have any insight on what's going on here?

like image 973
Chris Bier Avatar asked Oct 18 '12 14:10

Chris Bier


People also ask

What is use strict in AngularJS?

The "use strict" Directive It is not a statement, but a literal expression, ignored by earlier versions of JavaScript. The purpose of "use strict" is to indicate that the code should be executed in "strict mode". With strict mode, you can not, for example, use undeclared variables.

What are the controllers in AngularJS JS?

The controller in AngularJS is a JavaScript function that maintains the application data and behavior using $scope object. You can attach properties and methods to the $scope object inside a controller function, which in turn will add/update the data and attach behaviours to HTML elements.

Why are controllers used in AngularJS?

AngularJS application mainly relies on controllers to control the flow of data in the application. A controller is defined using ng-controller directive. A controller is a JavaScript object that contains attributes/properties, and functions.

What is difference between controller and directive AngularJS?

A controller is usually used to contain and maintain the logic for your view, which gets bound to your view via $scope. A directive is something that you might use repeatedly and is called in your view directly through the directive name which you can pass in as an attribute.


2 Answers

First off, I want to state the pkozlowski really knows his stuff at Angular, but this actually isn't as much of an Angular issue as it is an issue with closure.

Angular is looking for controllers in two places:

  1. in its own registry of controllers registered via Module.controller()
  2. In a global variable (or global function declaration)

The problem is that everything inside your closure for "use strict" is not global. It's wrapped up and privatized in the anonymous function containing it.

(function() {    // nothing in here is global or even public.    // "use strict" or not.     "use strict"; // this is mostly irrelevant.     // this will not work, because it's wrapped and not global    function ThisDoesntWork($scope) {    };     // window is the global root variable. So this works.    window.ThisWorks = function($scope) {     };     // this will work, because it's explicitly registering the controller    // presuming app is your Module variable from outside of the closure.    app.controller('ThisIsBest', function($scope) {     });  })();  //this works because it's global. function ThisAlsoWorks($scope) {  }  // if you declare a global var, then set it inside // of your closure, you're good to go too. var ThisWillWorkToo;  (function {     //here we're setting it again.     ThisWillWorkToo = function($scope) {     }; })();   // if you're really crazy you can even do this...  var ThisWillWorkButItsWeird = (function() {       "use strict";         function ThisWillWorkButItsWeird($scope) {         }         return ThisWillWorkButItsWeird;   })(); 

At the end of the day, you can put "use strict" inside any function, or at the file level if you like. "use strict" itself isn't breaking anything for you. There are a thousand ways to register a controller, as you can see. The best choice is probably to just explicitly register them with the .controller method as suggested.

like image 193
Ben Lesh Avatar answered Sep 17 '22 14:09

Ben Lesh


I guess that JSHint is trying to tell you here is to avoid global variables (which is obviously a very good practice!).

AngularJS has slightly different opinion about solving the same problem (that is - avoiding global variables) and allows you to define controllers in modules (using a global angular namespace). You could rewrite your example using modules like this:

angular.module('myApp',[]).controller('webAddressController', function($scope) {     // Do things }); 

Here is the jsFiddle illustrating this in practice: http://jsfiddle.net/t3vBE/1/

With this approach you are not polluting global namespace with controller constructors.

You will need to change the JSHint configuration to allow angular global variable if you want to use the strict mode. Alternatively you could also wrap your whole code (once again, using modules) into a function that gets executed imediatelly:

(function () {     "use strict";  angular.module('myApp',[]).controller('webAddressController', function($scope) {      $scope.name = 'World';     // Do things });  }());​ 

Here is the jsFiddle: http://jsfiddle.net/t3vBE/4/

For me this makes sense only if you want to define pure JavaScript, "helper" functions, otherwise I would rely on AngularJS services.

like image 27
pkozlowski.opensource Avatar answered Sep 20 '22 14:09

pkozlowski.opensource