During debugging of my ng-app I've find out that most time of $digest takes regularInterceptedExpression. The question is, what is causes of triggering it?
Asked
Active
Viewed 3,947 times
14
-
5There is another Stack Overflow question for this: http://stackoverflow.com/questions/26363286/angularjs-batarang-what-are-interceptedexpressions or more in depth: https://groups.google.com/forum/#!topic/angular/607sICcxqsM – user3006708 May 18 '16 at 20:45
-
1Possible duplicate of [AngularJS Batarang - What are interceptedExpressions?](https://stackoverflow.com/questions/26363286/angularjs-batarang-what-are-interceptedexpressions) – nircraft Nov 06 '18 at 14:26
-
Possible duplicate of https://stackoverflow.com/questions/26363286/angularjs-batarang-what-are-interceptedexpressions – nircraft Nov 06 '18 at 14:26
1 Answers
0
Found this on AngularJs Docs, hope this can help.
Following scenarios could cause this error.
When you declare a local scope property using = in a directive. This will create a interceptedExpression.
method calls in the view
Angular Tip: We should avoid method calls in the view whenever possible, since they run on every $digest loop.
Thanks,

Tek choudhary
- 150
- 6