路由小节资料有问题,问题已贴出来了,麻烦老师帮看下
路由这节资料下载下来有问题,问题出在 angular-1.3.0.js:12446 Uncaught Error: [$rootScope:infdig] 10 $digest() iterations reached. Aborting! 请问如何解决
路由这节资料下载下来有问题,问题出在 angular-1.3.0.js:12446 Uncaught Error: [$rootScope:infdig] 10 $digest() iterations reached. Aborting! 请问如何解决
2015-09-08
It is a known AngularJS issue. AngularJS itself prevents to many iterations to avoid infinite loops.
There is a possible workaround but it can harm other parts of your code:
$rootScopeProvider.digestTtl(15);
This changes the limit of the ten iterations to fifteen or whatever number you would like to.
http://jsfiddle.net/NP7P5/33/
举报