“Contrôleur dans les projets angularjs” Réponses codées

Contrôleur dans les projets 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

Contrôleur dans les projets 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

Réponses similaires à “Contrôleur dans les projets angularjs”

Questions similaires à “Contrôleur dans les projets angularjs”

Plus de réponses similaires à “Contrôleur dans les projets angularjs” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code