“Controlador en proyectos AngularJS” Código de respuesta

Controlador en proyectos AngularJS

var myApp = angular.module('scopeInheritance', []);
myApp.controller('MainController', ['$scope', function($scope) {
  $scope.timeOfDay = 'morning';
  $scope.name = 'Nikki';
}]);
myApp.controller('ChildController', ['$scope', function($scope) {
  $scope.name = 'Mattie';
}]);
myApp.controller('GrandChildController', ['$scope', function($scope) {
  $scope.timeOfDay = 'evening';
  $scope.name = 'Gingerbread Baby';
}]);
Crazy Cottonmouth

Controlador en proyectos AngularJS


myApp.controller('ChildController', ['$scope', function($scope) {
  $scope.name = 'Mattie';
}]);
myApp.controller('GrandChildController', ['$scope', function($scope) {
  $scope.timeOfDay = 'evening';
  $scope.name = 'Gingerbread Baby';
}]);
Crazy Cottonmouth

Respuestas similares a “Controlador en proyectos AngularJS”

Preguntas similares a “Controlador en proyectos AngularJS”

Más respuestas relacionadas con “Controlador en proyectos AngularJS” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código