Http://www.angularjsapi.cn/#/bootstrap
2016.7.4
Ng.function:
1.angular.bind (Self,fn,args);
2.angular.bootstrap (element, [modules], [config]);(load the application manually, the page can not be Ngapp)
3.angular.copy (source, [destination]);
4.angular.element (Element): (similar to the jquery selector) if jquery is introduced, then angular.element can be thought of as a jquery selector, and the selected object can use jquery's functions if JQuery is not available, angular.element can only accept HTML strings or DOM elements as arguments, and the selected element can only invoke the compact version of the jquery library embedded in angular (named: "JQuery Lite" or "Jqlite").
Note: all the elements referenced by angular are jquery or jqlite objects, not the original DOM elements return value: jquery object parameter element is an HTML string or DOM element
5.angular.foreach (obj, iterator, [context]) return value: reference to obj (context referent functionthis)
6.angular.fromjson (JSON); Converts a JSON string to an object return value : An object, an array, a string, or a numeric parameter of type string
7.angular.extend (DST, SRC); Copy properties in Src object to extend DST properties in DST objects
8.angular.injector (modules, [STRICTDI]) creates a injector object, calls the Injector object's method to obtain the angular service, or is used to do dependency injection
9.angular.module (name, [requires], [CONFIGFN]);
Angularjs Chinese version API v1.3.9 read