“Controlador em projetos AngularJS” Respostas de código

Controlador em projetos 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 em projetos 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

Respostas semelhantes a “Controlador em projetos AngularJS”

Perguntas semelhantes a “Controlador em projetos AngularJS”

Mais respostas relacionadas para “Controlador em projetos AngularJS” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código