Angular-command, angular
Angular command.
Ng-init: Initialize data
Use the = symbol in the property value as the variable value, separated by users, and cannot use var
Ng-app: Enable angular application mode. Only one page can appear once.
Attribute values can be available, but this project must be defined in js. If there is no attribute value, it can be directly used in the view.
Ng-model: bidirectional data binding
Ng-bind: another method of interpolation. The interpolation symbol is invisible during page rendering.
Ng-repeat: loop
Ng-show: whether to display
<Div> ng-show = "true" </div>
Ng-hide: hide or not
<Div ng-hide = "true"> </div>
Angular. module obtains
Var arr = angular. module ("mk", [])
The first parameter indicates the app representation.
The second parameter indicates the dependent set.
Write the sky array even if there is no dependency
Controller defines the controller's
Arr. controller ("kz", function ($ scope ){})
The first parameter indicates the Controller name.
The second parameter indicates the factory method.
No Parameters by default
The scope is an empty object.