Domande taggate «angularjs-controller»


8
Come posso usare $ rootScope in angolare per memorizzare le variabili?
Come posso utilizzare $rootScopeper memorizzare le variabili in un controller a cui voglio accedere in un secondo momento? Per esempio: angular.module('myApp').controller('myCtrl', function($scope) { var a = //something in the scope //put it in the root scope }); angular.module('myApp').controller('myCtrl2', function($scope) { var b = //get var a from root scope somehow …

10
Un controller AngularJS può ereditare da un altro controller nello stesso modulo?
All'interno di un modulo, un controller può ereditare le proprietà da un controller esterno: var app = angular.module('angularjs-starter', []); var ParentCtrl = function ($scope, $location) { }; app.controller('ChildCtrl', function($scope, $injector) { $injector.invoke(ParentCtrl, this, {$scope: $scope}); }); Esempio tramite: Dead link : http://blog.omkarpatil.com/2013/02/controller-inheritance-in-angularjs.html Anche un controller all'interno di un modulo può …



7
Come inserisco un controller in un altro controller in AngularJS
Sono nuovo su Angular e sto cercando di capire come fare le cose ... Utilizzando AngularJS, come posso iniettare un controller da utilizzare all'interno di un altro controller? Ho il seguente frammento: var app = angular.module("testApp", ['']); app.controller('TestCtrl1', ['$scope', function ($scope) { $scope.myMethod = function () { console.log("TestCtrl1 - myMethod"); …
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.