我一直在玩從工廠使用uibModal,而不是從我的控制器內使用它。彈出對話框,單擊OK時,字段數據將返回到服務,但是,我不知道如何將數據返回到我的控制器,它將在哪裏添加到我的模型中任何指針?
這裏是我的工廠代碼:
'use strict';
angular.module('ngTableScopeApp')
.factory('DialogService', function($uibModal){
var DialogService = {};
DialogService.newObj = {};
DialogService.addNewItem = function(template, $q){
this.modalInstance = $uibModal.open({
templateUrl: template,
controller: function($scope, $uibModalInstance){
$scope.ok = function() {
$uibModalInstance.close($scope);
return this.newObj;
};
$scope.cancel = function() {
$uibModalInstance.dismiss('cancel');
return null;
};
}
});
};
return DialogService;
});
這裏是控制器代碼:
'use strict';
/**
* @ngdoc function
* @name ngTableScopeApp.controller:MainCtrl
* @description
* # MainCtrl
* Controller of the ngTableScopeApp
*/
angular.module('ngTableScopeApp')
.controller('MainCtrl', function (NgTableParams, DummyData, DialogService) {
var self = this;
self.data = DummyData.generateData(1);
var createUsingFullOptions = function() {
var initialParams = {
count: 10 // initial page size
};
var initialSettings = {
// page size buttons (right set of buttons in demo)
counts: [5, 10, 25, 50],
// determines the pager buttons (left set of buttons in demo)
paginationMaxBlocks: 13,
paginationMinBlocks: 2,
dataset: self.data //DummyData.generateData(1)
};
return new NgTableParams(initialParams, initialSettings);
};
self.customConfigParams = createUsingFullOptions();
self.addNewItem = function(){
DialogService.addNewItem('views/addNewItem.html', self);
};
});
希望你能從控制器使用d訪問數據ialogService.newObj變量。 –