在ngDialog中将变量发送到控制器('resolve')

时间:2022-01-09 23:03:14

Simple way of opening modal with ngDialog is this:

使用ngDialog打开模态的简单方法是:

ngDialog.open({
    template: 'template.html',
    controller: 'someCtrl'
})

How can I send variables to that 'someCtrl'?

如何将变量发送到'someCtrl'?

Is there such thing as 'resolve' in ngDialog?

在ngDialog中有'解决'之类的东西吗?

Example from angular-bootstrap modal:

angular-bootstrap模态的示例:

$modal.open({
    template: "<p>This is template</p>",
    controller: "someCtrl",
    resolve: {
        someVar: function(){
            return "Value of someVar"
        }
    }
})

this would open the modal send the 'someVar' to the responsible Controller.

这将打开模态将'someVar'发送给负责的Controller。

UPDATE:

更新:

It seems like new version of ngDialog added this feature:

似乎新版本的ngDialog添加了此功能:

ngDialog.open({
    controller: function Ctrl(dep) {/*...*/},
    resolve: {
        dep: function depFactory() {
            return 'dep value';
        }
    }
});

1 个解决方案

#1


13  

Well looks like ngDialog doesn't support resolve and custom injection in controller. However you can alway do it manually by creating controller instance yourself:

看起来像ngDialog不支持控制器中的解析和自定义注入。但是,您可以通过自己创建控制器实例来手动完成:

ngDialog.open({
    scope: $scope,
    template: 'template.html',
    controller: $controller('someCtrl', {
        $scope: $scope,
        name: 'Thomas'
    })
});

then in controller you will be able to access injected service/variable:

然后在控制器中,您将能够访问注入的服务/变量:

app.controller('someCtrl', function($scope, name) {
    console.log(name); // Thomas
});

However there is a caveat with this approach, because when controller in instantiated by ngDialog itself it also injects $element service in it, which is an angular.element instance of the opened dialog HTML (however I doubt it's even necessary in controller). But you should know it anyway.

然而,这种方法有一个警告,因为当控制器由ngDialog本身实例化时,它还会在其中注入$ element服务,这是打开的对话框HTML的angular.element实例(但我怀疑它甚至在控制器中是必要的)。但无论如何你应该知道。

Demo: http://plnkr.co/edit/3YpQ2bemk8fntKAPWY9i?p=preview

#1


13  

Well looks like ngDialog doesn't support resolve and custom injection in controller. However you can alway do it manually by creating controller instance yourself:

看起来像ngDialog不支持控制器中的解析和自定义注入。但是,您可以通过自己创建控制器实例来手动完成:

ngDialog.open({
    scope: $scope,
    template: 'template.html',
    controller: $controller('someCtrl', {
        $scope: $scope,
        name: 'Thomas'
    })
});

then in controller you will be able to access injected service/variable:

然后在控制器中,您将能够访问注入的服务/变量:

app.controller('someCtrl', function($scope, name) {
    console.log(name); // Thomas
});

However there is a caveat with this approach, because when controller in instantiated by ngDialog itself it also injects $element service in it, which is an angular.element instance of the opened dialog HTML (however I doubt it's even necessary in controller). But you should know it anyway.

然而,这种方法有一个警告,因为当控制器由ngDialog本身实例化时,它还会在其中注入$ element服务,这是打开的对话框HTML的angular.element实例(但我怀疑它甚至在控制器中是必要的)。但无论如何你应该知道。

Demo: http://plnkr.co/edit/3YpQ2bemk8fntKAPWY9i?p=preview