将对象传递给Angular指令的'&'父范围功能

时间:2017-11-07 17:40:13

标签: javascript angularjs angular-directive angular-directive-link

如何将对象传递给Angular的(Angular 1.4.8)&和号范围绑定指令?

我从docs了解到,在回调函数中存在需要命名为params的排序的密钥解构,并且父作用域使用这些名称作为args。 This SO answer提供了预期&功能的有用示例。当在父控制器函数调用上明确命名params时,我可以使用它。

但是,我正在使用&通过工厂执行操作。父控制器对params一无所知,只需将回调参数传递给dataFactory,它需要基于动作的不同键/值。

承诺在工厂解析后,父作用域将使用返回的数据进行更新。

因此,我需要一个具有n个键/值对的对象,而不是命名参数,因为它将根据每个配置的操作而变化。这可能吗?

我最接近的是inject $parse into the link function,它没有回答我的问题,而是我正在寻找的那种解决办法。 This unanswered question听起来就像我需要的那样。

另外,我试图避免编码/解码JSON,如果可能的话我也想避免使用broadcast。为简洁起见,代码被删除了。感谢...

Relevant Child Directive Code

function featureAction(){
    return {
        scope: true,
        bindToController: {
            actionConfig: "=",
            actionName: "=",
            callAction: "&"
        },
        restrict: 'EA',
        controllerAs: "vm",
        link: updateButtonParams,
        controller: FeatureActionController
    };
}

Child handler on the DOM

 /***** navItem is from an ng-repeat, 
        which is where the variable configuration params come from *****/

ng-click="vm.takeAction(navItem)"

Relevant Child Controller

function FeatureActionController(modalService){
    var vm = this;
    vm.takeAction = takeAction;

    function _callAction(params){
        var obj = params || {};
        vm.callAction({params: obj});  // BROKEN HERE --> TRYING
                                       //TO SEND OBJ PARAMS
    }

    function executeOnUserConfirmation(func, config){
    return vm.userConfirmation().result.then(function(response){ func(response, config); }, logDismissal);
}

function generateTasks(resp, params){
    params.example_param_1 = vm.add_example_param_to_decorate_here;
    _callAction(params);
}

function takeAction(params){
    var func = generateTasks; 
    executeOnUserConfirmation(func, params);
}

Relevent Parent Controller

function callAction(params){
        // logs undefined -- works if I switch to naming params as strings
        console.log("INCOMING PARAMS FROM CHILD CONTROLLER", params) 
        executeAction(params);   
    }

    function executeAction(params){
        dataService.executeAction(params).then(function(data){ 
            updateRecordsDisplay(data); });
    }

1 个答案:

答案 0 :(得分:1)

我认为下面的示例应该为您提供足够的开始来解决您的问题:

<!DOCTYPE html>
<html ng-app="myApp">
  <head>
    <meta charset="utf-8">
    <title>Angular Callback</title>
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
    <script>
    var myApp = angular.module("myApp", []);

    myApp.controller('appController', function($scope) {
      $scope.var1 = 1;

      $scope.handleAction1 = function(params) {
        console.log('handleAction1 ------------------------------');
        console.log('params', params);
      }

      $scope.handleAction2 = function(params, val1) {
        console.log('handleAction2 ------------------------------');
        console.log('params', params);
        console.log('val1', val1);
      }

    });


    myApp.controller('innerController', innerController);
    innerController.$inject = ['$scope'];
    function innerController($scope) {
      $scope.doSomething = doSomething;

      function doSomething() {
        console.log('doSomething()');
        var obj = {a:1,b:2,c:3}; // <-- Build your params here
        $scope.callAction({val1: 1, params: obj});
      }
    }

    myApp.directive('inner', innerDirective );
    function innerDirective() {
      return {
        'restrict': 'E',
        'template': '{{label}}: <button ng-click="doSomething()">Do Something</button><br/>',
        'controller': 'innerController',
        'scope': {
          callAction: '&',
          label: '@'
        }
      };
    }
    </script>
  </head>
  <body ng-controller="appController">
    <inner label="One Param" call-action="handleAction1(params)"></inner>
    <inner label="Two Params" call-action="handleAction2(params, val)"></inner>
  </body>
</html>

appController中,我有两个将由inner指令调用的函数。该指令期望外部控制器使用call-action标记上的<inner>属性传递这些函数。

当您点击inner指令中的按钮时,它调用了函数$scope.doSomething,然后调用外部控制器函数handleAction1handleAction2。它还传递了一组参数val1params

$scope.callAction({val1: 1, params: obj});

在模板中,您可以指定要将哪些参数传递到外部控制器函数中:

call-action="handleAction1(params)"

call-action="handleAction2(params, val)"

Angular然后使用这些参数名称来查看您在调用$scope.callAction时发送的对象。

如果需要将其他参数传递到外部控制器函数,则只需将其添加到调用$scope.callAction中定义的对象中。在您的情况下,您可能希望将更多内容放入传入的对象中:

var obj = {a:1,b:2,c:3}; // <-- Build your params here

使其适合您的需要,然后在您的外部控制器中,您将接收params,它将是本段上方定义的对象的副本。

这不是你要问的,让我知道。