For a typical user, Angularjs's ng-app are manually bound to a DOM element. But in some applications, this is inconvenient.
Binding initialization
By binding to angular initialization, will be the JS code into the HTML, but for beginners to use, or enough!
After running, it will show hello,angular!
Manual initialization
The manual-bound api--bootstrap is also available in the angular, which is used in the following ways:
Angular.bootstrap (element, [modules], [config]);
The first parameter element is the DOM element that binds the Ng-app;
Modules: Bound module name
Config: Additional configuration
Take a quick look at the code:
It is noteworthy that:
Angular.bootstrap only binds objects that are loaded for the first time.
Subsequent bindings or other objects ' bindings will output error prompts at the console.
The above is the Angularjs bootstrap data collation, follow-up continue to supplement the relevant information, thank you for your support of this site!