I have the following code,
HTML
<div ng-app="test">
<div ng-controller="containerCtrl">
<ponent data-module="ponents"></ponent>
</div>
</div>
JS
var test = angular.module('test', []);
test.controller('containerCtrl', ['$scope', '$rootScope', function ($scope, $rootScope) {
$scopeponents = [];
$scope.$on('onSomething', function(e) {
$scopeponents = $rootScope.config;
});
}]);
test.directive('ponent', function () {
var linkFn = function(scope, element, attrs) {
scope.$on('onSomething', function(e) {
console.log(scope, e, scope.module, e.currentScope.module);
/*
* Here 'module' is an array in both 'e' and 'scope' , but when I console it says [].
*/
console.log("onSomething!");
});
};
return {
restrict: 'E',
scope: {
module: '=module'
},
link : linkFn
};
});
test.run(['$rootScope', '$timeout', function ($rootScope, $timeout) {
$timeout(function(){
$rootScope.config = [{id: "c1", width: 100, height: 100 }];
$rootScope.$broadcast("onSomething", "");
},5000);
}]);
Fiddle /
Problem
In run
method, I have an ajax request which receives a configuration from the database. Once the request is plete, It is broadcast
-ed to the scope level. Now the problem is, I am receiving the broadcast in a directive
, when I console e
or scope
, I can see the module
which has an array with data whereas when I console scope.module
, it says []
. I am not getting the error, am I doing something wrong?
Note: Adding a $scope.$watch
might help, but I am trying to avoid $watch
. Is there any other way to do it.
Thanks in advance
I have the following code,
HTML
<div ng-app="test">
<div ng-controller="containerCtrl">
<ponent data-module="ponents"></ponent>
</div>
</div>
JS
var test = angular.module('test', []);
test.controller('containerCtrl', ['$scope', '$rootScope', function ($scope, $rootScope) {
$scope.ponents = [];
$scope.$on('onSomething', function(e) {
$scope.ponents = $rootScope.config;
});
}]);
test.directive('ponent', function () {
var linkFn = function(scope, element, attrs) {
scope.$on('onSomething', function(e) {
console.log(scope, e, scope.module, e.currentScope.module);
/*
* Here 'module' is an array in both 'e' and 'scope' , but when I console it says [].
*/
console.log("onSomething!");
});
};
return {
restrict: 'E',
scope: {
module: '=module'
},
link : linkFn
};
});
test.run(['$rootScope', '$timeout', function ($rootScope, $timeout) {
$timeout(function(){
$rootScope.config = [{id: "c1", width: 100, height: 100 }];
$rootScope.$broadcast("onSomething", "");
},5000);
}]);
Fiddle http://jsfiddle/vFncP/4/
Problem
In run
method, I have an ajax request which receives a configuration from the database. Once the request is plete, It is broadcast
-ed to the scope level. Now the problem is, I am receiving the broadcast in a directive
, when I console e
or scope
, I can see the module
which has an array with data whereas when I console scope.module
, it says []
. I am not getting the error, am I doing something wrong?
Note: Adding a $scope.$watch
might help, but I am trying to avoid $watch
. Is there any other way to do it.
Thanks in advance
Share Improve this question edited Jun 20, 2020 at 9:12 CommunityBot 11 silver badge asked Nov 12, 2013 at 12:22 moustachemanmoustacheman 1,4644 gold badges23 silver badges47 bronze badges1 Answer
Reset to default 6A solution could be $digest to refresh scope values:
scope.$digest();
http://jsfiddle/Anthonny/vFncP/7/