Created
August 26, 2014 03:12
-
-
Save dbarrionuevo/d04532a101de655defb5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Sin Alias --> | |
| <div ng-controller="CustomersController"> | |
| <ul> | |
| <li ng-repeat="customer in customers"> | |
| {{ customer.name }} | |
| </li> | |
| </ul> | |
| </div> | |
| <script> | |
| function CustomersController ($scope) { | |
| $scope.customers = [ | |
| { name: 'John Doe' }. | |
| { name: 'Jane Juarez' } | |
| ]; | |
| } | |
| </script> | |
| <!-- Con Alias --> | |
| <div ng-controller="CustomersController as ctrl"> | |
| <ul> | |
| <li ng-repeat="customer in ctrl.customers"> | |
| {{ customer.name }} | |
| </li> | |
| </ul> | |
| </div> | |
| <script> | |
| function CustomersController () { | |
| this.customers = [ | |
| { name: 'John Doe' }. | |
| { name: 'Jane Juarez' } | |
| ]; | |
| } | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment