All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.src.loader.md Maven / Gradle / Ivy

/\*\*

- @ngdoc module
- @name ng

- @installation
- @description
-
- The ng module is loaded by default when an AngularJS application is started. The module itself
- contains the essential components for an AngularJS application to function. The table below
- lists a high level breakdown of each of the services/factories, filters, directives and testing
- components available within this core module.
- \*/

/\*\*

- @ngdoc directive
- @name ngApp
-
- @element ANY
- @param {import('./types').Module} ngApp an optional application
- {@link angular.module module} name to load.
- @param {boolean=} ngStrictDi if this attribute is present on the app element, the injector will be
- created in "strict-di" mode. This means that the application will fail to invoke functions which
- do not use explicit function annotation (and are thus unsuitable for minification), as described
- in {@link guide/di the Dependency Injection guide}, and useful debugging info will assist in
- tracking down the root of these bugs.
-
- @description
-
- Use this directive to **auto-bootstrap** an AngularJS application. The `ngApp` directive
- designates the **root element** of the application and is typically placed near the root element
- of the page - e.g. on the `` or `` tags.
-
- There are a few things to keep in mind when using `ngApp`:
- - only one AngularJS application can be auto-bootstrapped per HTML document. The first `ngApp`
- found in the document will be used to define the root element to auto-bootstrap as an
- application. To run multiple applications in an HTML document you must manually bootstrap them using
- {@link angular.bootstrap} instead.
- - AngularJS applications cannot be nested within each other.
- - Do not use a directive that uses {@link ng.$compile#transclusion transclusion} on the same element as `ngApp`.
- This includes directives such as {@link ng.ngIf `ngIf`}, {@link ng.ngInclude `ngInclude`} and
- {@link ngRoute.ngView `ngView`}.
- Doing this misplaces the app {@link ng.$rootElement `$rootElement`} and the app's {@link auto.$injector injector},
- causing animations to stop working and making the injector inaccessible from outside the app.
-
- You can specify an **AngularJS module** to be used as the root module for the application. This
- module will be loaded into the {@link auto.$injector} when the application is bootstrapped. It
- should contain the application code needed or have dependencies on other modules that will
- contain the code. See {@link angular.module} for more information.
-
- In the example below if the `ngApp` directive were not placed on the `html` element then the
- document would not be compiled, the `AppController` would not be instantiated and the `{{ a+b }}`
- would not be resolved to `3`.
-
- @example
-
- ### Simple Usage
-
- `ngApp` is the easiest, and most common way to bootstrap an application.
- 
    
    
I can add: {{a}} + {{b}} = {{ a+b }}
angular.module('ngAppDemo', []).controller('ngAppDemoController', function($scope) { $scope.a = 1; $scope.b = 2; });
- - @example - - ### With `ngStrictDi` - - Using `ngStrictDi`, you would see something like this: -
I can add: {{a}} + {{b}} = {{ a+b }}

This renders because the controller does not fail to instantiate, by using explicit annotation style (see script.js for details)

Name:
Hello, {{name}}!

This renders because the controller does not fail to instantiate, by using explicit annotation style (see script.js for details)

I can add: {{a}} + {{b}} = {{ a+b }}

The controller could not be instantiated, due to relying on automatic function annotations (which are disabled in strict mode). As such, the content of this section is not interpolated, and there should be an error in your web console.

angular.module('ngAppStrictDemo', []) // BadController will fail to instantiate, due to relying on automatic function annotation, // rather than an explicit annotation .controller('BadController', function($scope) { $scope.a = 1; $scope.b = 2; }) // Unlike BadController, GoodController1 and GoodController2 will not fail to be instantiated, // due to using explicit annotations using the array style and $inject property, respectively. .controller('GoodController1', ['$scope', function($scope) { $scope.a = 1; $scope.b = 2; }]) .controller('GoodController2', GoodController2); function GoodController2($scope) { $scope.name = 'World'; } GoodController2.$inject = ['$scope']; div[ng-controller] { margin-bottom: 1em; -webkit-border-radius: 4px; border-radius: 4px; border: 1px solid; padding: .5em; } div[ng-controller^=Good] { border-color: #d6e9c6; background-color: #dff0d8; color: #3c763d; } div[ng-controller^=Bad] { border-color: #ebccd1; background-color: #f2dede; color: #a94442; margin-bottom: 0; }
*/




© 2015 - 2025 Weber Informatics LLC | Privacy Policy