Which one handles exception automatically between $digest and $apply?



Which one handles exception automatically between $digest and $apply?..

Answer / swati maheshwari

$apply handle exceptions.
scope.$digest() will only fire watchers on current scope, scope.$apply will evaluate passed function and run $rootScope.$digest().

First one is faster, as needs to evaluate watchers for current scope, second one is slower (needs to evaluate watchers for$rootScope and all it's child scopes).

When error occurs in one of the watchers and you use scope.$digest, it's not handled via $exceptionHandler service, so you need to handle exception yourself. scope.$apply uses try catch block internally and passes all exceptions to $exceptionHandler.

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More AngularJS Interview Questions

What is difference between rootscope and scope in angular 2?

0 Answers  


What are cookies in angular 2?

0 Answers  


What is ng build command?

0 Answers  


How many times ngoninit is called?

0 Answers  


List the types of data binding supported by angular 5?

0 Answers  


Whenever invoke ngondestroy. Ngdocheck ligon.init?

0 Answers  


What is the function of the $timeout service?

0 Answers  


What is jit and aot?

0 Answers  


What is an eventemitter?

0 Answers  


What are dsl animation functions in angular js. List them.

0 Answers  


What are the features of angular?

0 Answers  


What is tree shaking in angular?

0 Answers  


Categories