13

我试图从指令中向其父控制器发送消息(没有成功)

这是我的 HTML

<div ng-controller="Ctrl">
   <my-elem/>
</div>

这是控制器中监听事件的代码

$scope.on('go', function(){ .... }) ;

最后指令看起来像

angular.module('App').directive('myElem',
   function () {
    return {
        restrict: 'E',
        templateUrl: '/views/my-elem.html',
        link: function ($scope, $element, $attrs) {
            $element.on('click', function() {
                  console.log("We're in") ; 
                  $scope.$emit('go', { nr: 10 }) ;
            }
        }
    }
  }) ;

我尝试了不同的范围配置和 $broadcast 而不是 $emit。我看到事件被触发,但控制器没有收到“go”事件。有什么建议么 ?

4

3 回答 3

26

没有on范围的方法。在角度它是$on

下面应该适合你

<!doctype html>
<html ng-app="test">
  <head>
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0-rc.2/angular.js"></script>

  </head>
 <body ng-controller="test" >    
 <my-elem/>

<!-- tabs -->


 <script>
     var app = angular.module('test', []);
     app.controller('test', function ($scope) {

         $scope.$on('go', function () { alert('event is clicked') });
     });
     app.directive('myElem',
   function () {
       return {
           restrict: 'E',
           replace:true,
           template: '<div><input type="button" value=check/></input>',
           link: function ($scope, $element, $attrs) {
               alert("123");
               $element.bind('click', function () {
                   console.log("We're in");
                   $scope.$emit('go');
               });
               }
       }
   }) ;

   </script>
</body>


</html>
于 2013-09-25T10:25:19.100 回答
2

为了得到{ nr: 10 }你应该添加2个参数到监听器:eventdata

$scope.$on('go', function(event, data){ 
  alert(JSON.stringify(data));
});

(请记住,我们使用$on而不是on

Full example in plunker

于 2018-08-07T10:55:18.667 回答
1

$broadcast, $emit, 和$on已弃用

不推荐使用范围/rootScope 事件总线,这将使迁移到 Angular 2+ 更加困难。

为了更容易过渡到 Angular 2+,AngularJS 1.5 引入了组件

app.component("myElem", {
    bindings: {
      onGo: '&',
    },
    template: `
        <button ng-click="$ctrl.go($event,{nr:10})">
            Click to GO
        </button>
    `,
    controller: function() {
        this.go = (event,data) => {
            this.onGo({$event: event, $data: data});
        };
    }
});

用法:

<div ng-controller="Ctrl as $ctrl">
   <my-elem on-go="$ctrl.fn($data)></my-elem>
</div>

该组件使用带有 AngularJS 表达式 ( &) 绑定的属性,该属性调用父控制器中的函数。事件不会用大量事件阻塞范围/rootScope 事件总线,而是直接转到使用它的函数。

演示

angular.module('app', [])
.controller ('Ctrl', function () {
    this.go = (data) => {
      console.log(data);
      this.update = data;
    };
})
.component("myElem", {
    bindings: {
      onGo: '&',
    },
    template: `
      <fieldset>
        <input ng-model="$ctrl.nr" /><br>
        <button ng-click="$ctrl.go($event,$ctrl.nr)">
            Click to Update
        </button>
      </fieldset>
    `,
    controller: function() {
        this.nr = 10;
        this.go = (event,data) => {
            this.onGo({$event: event, $data: data});
        };
    }
})
<script  src="//unpkg.com/angular/angular.js"></script>
<body ng-app="app" ng-controller="Ctrl as $ctrl">
    <p>update={{$ctrl.update}}</p>
    <my-elem on-go="$ctrl.go($data)"></my-elem>
</body>

有关详细信息,请参阅

于 2018-08-04T16:12:14.823 回答