我使用
Angular UI bootstrap modal dialog并在服务内创建它:
myApp.factory('ModalService',['$modal',function($modal) { return { trigger: function(template) { $modal.open({ templateUrl: template,size: 'lg',controller: function($scope,$modalInstance) { $scope.ok = function() { $modalInstance.close($scope.selected.item); }; $scope.cancel = function() { $modalInstance.dismiss('cancel'); }; } }); },close: function() { // this should close all modal instances } }; }]);