最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Call Angular-function upon $scope-variable change - Stack Overflow

programmeradmin2浏览0评论

I am new to AngularJS and trying to set up a function that gets called upon whenever a variable is changed.

Currently I have a dropdown-menu, with ng-model bound to a $scope.userRating. And I am trying to get a function that gets called immediately when the user changes the value using the dropdown.

I have been looking at $watch, but not quite sure on how to get it to work. I also tried to make a ng-click function on the in the html, but ng-clicks don't seem to trigger.

I am new to AngularJS and trying to set up a function that gets called upon whenever a variable is changed.

Currently I have a dropdown-menu, with ng-model bound to a $scope.userRating. And I am trying to get a function that gets called immediately when the user changes the value using the dropdown.

I have been looking at $watch, but not quite sure on how to get it to work. I also tried to make a ng-click function on the in the html, but ng-clicks don't seem to trigger.

Share Improve this question asked Apr 14, 2015 at 16:46 user3056656user3056656 531 silver badge3 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 10

You should use $watch . Example-

 $scope.$watch('modalVarible',function(newVal,oldVal){
//do your code
}

Here on the change of variable 'modalVarible' this watch will be called.

we can use $watchGroup in controller of our directive to bind $scope variable changes (bidirectional)

$scope.$watchGroup(['var1','var2'],function () {

});

you can also check this question.

发布评论

评论列表(0)

  1. 暂无评论