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 }) ;
            }
        }
    }
  }) ;

$emit の代わりに別のスコープ構成と $broadcast を試しました。イベントが発生することはわかりますが、コントローラーは「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 に答える