我正在使用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'
});
}
但我得到空的模态内容。
答案 0 :(得分:0)
尝试$ rootScope.Ui.turnOn('modal1')而不是SharedState.turnOn('modal1');