首先在控制器内写好一个弹窗,我用的是ionic的默认提示对话框

// 一个确认对话框
   $scope.showConfirm = function() {
     var confirmPopup = $ionicPopup.confirm({
       title: 'Consume Ice Cream',
       template: 'Are you sure you want to eat this ice cream?'
     });
     confirmPopup.then(function(res) {
       if(res) {
         console.log('You are sure');
       } else {
         console.log('You are not sure');
       }
     });
   };

然后在控制器内加入$viewContentLoaded事件

$scope.$watch('$viewContentLoaded', function() {  
        $scope.showConfirm();  
    });  

在网上看有人说在官方的API里面没有看到viewContentLoaded,可能Angular2之后废除了?但是我使用老版本是可以的。还要多学习其他方法捏..

Posted on 2017-05-19 11:39  LuciaHuang  阅读(847)  评论(0编辑  收藏  举报