Ionic学习笔记2016-05

  • ***ionic 不允许ion-view swipe返回 ***
    可单独定义某个ion-view,can-swipe-back:false但ios下该行为有性能问题,要全部禁止,用:
$ionicConfigProvider.views.swipeBackEnabled(false);​
  • 运行cordova prepare ios报错
[TypeError: Cannot read property 'nodeValue' of undefined]

解决办法:移除iOS平台,重新添加

cordova platform rm ios
cordova platform add ios
cordova prepare ios
  • input[date]

The model must always be a Date object, otherwise Angular will throw an error. Invalid Date objects (dates whose getTime() is NaN) will be rendered as an empty string.The model must always be a Date object, otherwise Angular will throw an error. Invalid Date objects (dates whose getTime() is NaN) will be rendered as an empty string.

你可能感兴趣的:(Ionic学习笔记2016-05)