“Pengontrol dalam proyek AngularJS” Kode Jawaban

Pengontrol dalam proyek 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

Pengontrol dalam proyek 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

Jawaban yang mirip dengan “Pengontrol dalam proyek AngularJS”

Pertanyaan yang mirip dengan “Pengontrol dalam proyek AngularJS”

Lebih banyak jawaban terkait untuk “Pengontrol dalam proyek AngularJS” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya