我目前正在测试离子视图.
这是我的代码:
.run(function($ionicPlatform) { $ionicPlatform.ready(function() { // HIDe the accessory bar by default (remove this to show the accessory bar above the keyboard // for form inputs) if(window.cordova && window.cordova.plugins.Keyboard) { cordova.plugins.Keyboard.hIDeKeyboardAccessorybar(true); } if(window.Statusbar) { // org.apache.cordova.statusbar required Statusbar.styleDefault(); } }); $ionicPlatform.registerBackbuttonAction(function(e) { e.preventDefault(); },101);})解决方法 根据离子 documentation
Your back button action will overrIDe each of the above actions
whose priority is less than the priority you provIDe.
并且鉴于您希望在所有情况下完全禁用后退按钮,并且引用列表中的 *** 作的最高优先级为500,您应该提供超过500,600的优先级值.放置在$ionicPlatform.ready()中时,下面的代码应该可以工作
$ionicPlatform.registerBackbuttonAction(function(e) {},600);总结
以上是内存溢出为你收集整理的android – 离子后退按钮全部内容,希望文章能够帮你解决android – 离子后退按钮所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)