gpt4 book ai didi

javascript - AngularJS 从 Controller 打开模态

转载 作者:行者123 更新时间:2023-11-29 14:45:54 25 4
gpt4 key购买 nike

我是 angularjs 的新手,并编写了一个应用程序,其中包含网格的模板(inventory.html)用打开,它在网格底部有一个验证按钮,它调用 validate() 来验证选定的网格行,在此之前我需要一个模式来弹出并将用户名作为输入,然后进一步处理。

我的验证函数在模板的 Controller 内部(即 inventory.html)。我有一个包含路由信息的 app.js 和包含所有模板 Controller 的 controller.js。

我的问题是,如果有任何方法可以从 validate() 打开模态,接受用户输入并继续下一步,而无需为模态编写单独的 Controller 。(我有一个单独的 userinput.html 模态。)

(对不起,如果我的问题不清楚。请帮助我坚持这个并尝试了来自网络的许多选项)

//这是我的 Controller

var app = angular.module('app', []);
app.controller('InventoryCtrl',['$scope','$location','$http','$modal',function($scope, $location, $http,$modal{console.log("Inside inventory ctrlr");

// Validate Function for validate button click
$scope.validate = function()
{
$scope.user = null;
$scope.build = null;
// Show modal to take user inputs for environment
var modalInstance = $modal.open(
{
controller : "inputModalCntrl",
templateUrl : "../partials/addEnvironment.html",
resolve: {
$callback: function () {
return function(param,user,build){
/* This function print value(param) dispached in modal controller */
console.log(param,user,build);
$scope.user = user;
$scope.build = build;
};
},
$send: function(){
return function(){
/* This function send param for the modal */
return {param1:"Hello Word Main"};
};
}
}
});
// This is further process of function
postdata = {};
var dlist = $scope.gridApi.selection.getSelectedRows();
postdata['dlist'] = dlist;
$http({ url: "/api/check", data: postdata, method: "POST" })
.success(function (response) { alert(response);})
.error(function () { alert('Error getting data');});
};
}]);

这是模态 Controller

app.controller("inputModalCntrl", function($scope, $modalInstance, $callback, $send) {
$scope.init = function(){
/* This function print value(param) dispached in main controller */
console.log($send);

/* This send data to main controller */
$callback({param1:"Hello Word Modal", user :user, build : build});
};
});

最佳答案

我强烈建议您为您的模态编写一个单独的 Controller 。这将极大地帮助您以后维护代码。

如果我(从您的标签)理解正确,您使用的是这个:https://angular-ui.github.io/bootstrap/从你的主 Controller ,打开模态:

var modalInstance = $modal.open({
animation: $scope.animationsEnabled,
templateUrl: 'myModalContent.html',
controller: 'ModalInstanceCtrl',
size: size,
resolve: {
items: function () {
return $scope.items;
}
}
});

请注意 resolve 函数,您可以像这样将额外的参数传递给模态 Controller 。

在模态 Controller 中:

angular.module('your.awesomeApp').controller('ModalInstanceCtrl', function ($scope, $modalInstance, items) {

注意第三个参数,它将是您传递的值。

关于javascript - AngularJS 从 Controller 打开模态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32950698/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com