Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发的 Ionic 应用程序在启动时显示 $ionicPopup,在关闭弹出窗口后,该应用程序包含的两个侧边菜单根本不起作用。如果我从代码中删除弹出窗口,则侧面菜单运行良好。
有谁知道问题可能是什么?
将以下代码添加到包含滑动框的控制器中:
$scope.$on('$ionicView.enter', function(){ $ionicSlideBoxDelegate.update(); })
我和你有同样的问题。我解决了这个问题。
解决方案
我也面临同样的问题。
就我而言,发生这种情况是因为enable-menu-with-back-views="true"选项 inion-side-menu设置为 false。
enable-menu-with-back-views="true"
ion-side-menu
将其设置为 true 时,它又恢复了工作。=)