如何从弹出按钮点击Ionic关闭侧边菜单?

时间:2015-02-22 15:04:56

标签: angularjs button popup ionic-framework

我已经在离子框架中修改了侧边菜单中的弹出菜单一段时间,并试图通过弹出窗口中创建的按钮关闭侧边菜单。有没有可行的方法呢?

2 个答案:

答案 0 :(得分:7)

function ContentController($scope, $ionicSideMenuDelegate) {
  $scope.toggleLeft = function() {
    $ionicSideMenuDelegate.toggleLeft();
  };
}

答案 1 :(得分:0)

关闭菜单:

$ionicSideMenuDelegate.toggleLeft(false);

来自离子的代码:

enter image description here

enter image description here