从控制器打开Mobile-Angular-ui模态对话框

时间:2015-09-22 06:30:32

标签: angularjs

我正在使用mobile-angular-ui用于移动设备。但我面临着从控制器打开对话框的问题。

控制器

[u'1', u'"End of the Road"', u'Boyz II Men']

视图

$scope.openModal = function() {
            SharedState.initialize($scope, 'modal1');
               // SharedState.turnOn('modal1');
            $rootScope.Ui.turnOn('modal1');
            var modalInstance = $modal.open({
                templateUrl: '../scripts/app/account/modal-dialog/modal.html',
                controller: 'SearchController', //This must be a referance, not a string
                size: 'sm'
            });
        }

但我得到空的模态内容。

1 个答案:

答案 0 :(得分:0)

尝试$ rootScope.Ui.turnOn('modal1')而不是SharedState.turnOn('modal1');

github-mobile-angular-ui/issues/252