Tutorial #5 del Curso de Angular JS, en este tutorial seguimos viendo las expresiones veremos como utilizar objetos en las expresiones esto facilita a tener mejor ordenado la información y utilizar la programación orientada a objetos.
<!DOCTYPE html> <html ng-app="objetos"> <head> <meta charset="utf-8"> <title>expresiones - objetos</title> <script type="text/javascript" src="angular.min.js"></script> </head> <body> <div ng-controller="libros"> <p>El autor del libro es: {{libro.autor}}</p> <p>El título del libro es: {{libro.titulo}}</p> <p>La editorial del libro es: {{libro.editorial}}</p> </div> <script type="text/javascript"> var objetos = angular.module('objetos',[]); objetos.controller('libros',function($scope){ $scope.libro = {}; $scope.libro.autor = "Pedro Gonzales"; $scope.libro.titulo = "Historias del mar"; $scope.libro.editorial = "Milenio"; }); </script> </body> </html>