使用angularjs提供的$modal可以快捷的创建新的弹出框,并且自带了一些比较好用的属性和方法,方便我们进行开发。
属性:
@H_404_30@templateURL:指定加载模板路径
@H_404_30@$controller:为$modal指定controller,初始化$scope
@H_404_30@resolve:定义一个成员并将它传递给$modal指定的控制器,相当于routes的一个resolve属性,如果需要传递一个object对象,需要使用angular.copy()
用例:
$scope.openAuthenticationViewPage = function(){ singleModal.open({ templateUrl: 'terminal/authentication/authentication-conf.html',//指定模板路径 controller: 'TerminalAuthConfController',//指定controller size:'lg',//模态框大小 backdrop:true,//控制背景 keyboard:false//禁用ESC键 },function(result) { $scope.toggleManager.getauthinfo(); },function(reason) { $scope.toggleManager.AuthViewInit(); }); };下面是做了一个简单的封装,
.factory('singleModal',['$modal',function($modal) { var vm = this; vm.modal = null; vm.draggable = function(){ $(".modal-content").draggable({ handle: ".modal-header",cursor: 'move',refreshPositions: false }); }; return { open: function(param,result_fc,reason_fc) { if (vm.modal != null) { return null; } vm.modal = $modal.open(param); vm.modal.result.then(function(result) { vm.modal = null; if(result_fc!= null){ result_fc(result); } },function(reason){ vm.modal = null; if(reason_fc!= null){ reason_fc(reason); } }); vm.modal.opened.then(function() { setTimeout(vm.draggable,3000); }); return vm.modal; } } }])