iOS9在ionic下出现的问题

问题描述及解决方案:

http://blog.ionic.io/ios-9-potential-breaking-change/

如果浏览器中,出现下述问题,建议打补丁:

Error: [$rootScope:infdig] 10 $digest() iterations reached. Aborting!
Watchers fired in the last 5 iterations: []



方案翻译一下:

下载补丁:

https://gist.githubusercontent.com/IgorMinar/863acd413e3925bf282c/raw/58efa6bad10af41761e866084cb34bca28c7aa9d/angular-ios9-uiwebview.patch.js

在app.js(启动js)中应用模块:

'ngIOS9UIWebViewPatch'

angular.module('starter', [
	'ngCordova',
	'ngIOS9UIWebViewPatch',
	'starter.setting-controllers',



你可能感兴趣的:(bug,ionic,IOS9)