$controllerProvider

  1. $controller
  2. provider in module ng

The $controller service is used by Angular to create new controllers.

This provider allows controller registration via the register method.

Methods

  • has(name);

    Parameters

    Param Type Details
    name string

    Controller name to check.

  • register(name, constructor);

    Parameters

    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).

  • allowGlobals();

    If called, allows $controller to find controller constructors on window

doc_AngularJS
2016-03-29 16:10:18
Comments
Leave a Comment

Please login to continue.