8
Làm cách nào để sử dụng $ rootScope trong Angular để lưu trữ các biến?
Làm cách nào để sử dụng $rootScopeđể lưu trữ các biến trong bộ điều khiển mà tôi muốn truy cập sau này trong bộ điều khiển khác? Ví dụ: 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 …