如何取消$state.go()的动画

How to cancel the animation of $state.go()

$state.go()是page-redirecting.But的方法结果不是satisfactory.So如何取消这个动画

您需要执行以下操作来禁用状态转换动画:

$ionicHistory.nextViewOptions({
     disableAnimate: true
});

...这里还有一些关于 $ionicHistory 的文档:

http://ionicframework.com/docs/api/service/$ionicHistory/