The $controller service is used by AngularJS to create new controllers.
This provider allows controller registration via the register method.
has(name);
Param | Type | Details |
---|---|---|
name | string |
Controller name to check. |
register(name, constructor);
Param | Type | Details |
---|---|---|
name | stringObject |
Controller name, or an object map of controllers where the keys are the names and the values are the constructors. |
constructor | function()Array |
Controller constructor fn (optionally decorated with DI annotations in the array notation). |