2017-02-10 10 views
0

ここでは何もやっていないと思いますが、ディレクティブを添付したHTMLエレメントのカスタムアトリビュートにアクセスしたいのに動作しません。私は他の人がスコープを使用しているのを見たことがありますが、$ evalでも動作するようには思えません。Angularjsディレクティブのアトリビュートにアクセスできない

ここで私は(ここではjsfiddle:https://jsfiddle.net/u5d3gfny/1/):試してみました何

<!DOCTYPE html> 
<html ng-app="AngAttrTest"> 
    <head> 
     <title>Bootstrap 3</title> 
    </head> 
    <meta name="viewport" content="width=device-width, initial-scale=1.0"/> 


    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> 
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.7/angular.min.js"></script> 
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script> 

    <body>  

     <a href="#" id="my-modal" class="btn btn-success fcvt-btn-save" nextModalId="fileFormatModal" chain-modal>Continue</a> 
     <div id="appendMe"/> 

     <script> 

      var app = angular.module('AngAttrTest', []); 

      app.directive('chainModal', ['$document', function($document){ 

       return { 

        link: function(scope, elem, attrs) { 
         elem.bind('click', function() { 
          $('#appendMe').append("This works, ID: " + attrs.id + "<br/><br/>"); 
          $('#appendMe').append("So does this, Class: " + attrs.class + "<br/><br/>"); 
          $('#appendMe').append("But my custom Attribute nextModalId comes up undefined: " + attrs.nextModalId + "<br/><br/>"); 
         }); 
        } 

       } 
      }]);   

     </script> 

    </body> 
</html> 

私もノーavialにこれで私のリンク機能を交換しようとした:

   link: function(scope, elem, attrs) { 
        elem.bind('click', function() { 
          var nextModalId = scope.$eval(attrs.nextModalId); 

         $('#appendMe').append("This works, ID: " + attrs.id + "<br/><br/>"); 
         $('#appendMe').append("So does this, Class: " + attrs.class + "<br/><br/>"); 
         $('#appendMe').append("But my custom Attribute nextModalId comes up undefined: " + nextModalId + "<br/><br/>"); 


        }); 
       } 

それは本当に簡単でなければなりませんように。これは思えますしかし、私が間違ってやっていることが何であるか分かりません。ありがとう!

答えて

0

ディレクティブを属性として使用する場合は、スネークケースで宣言する必要があります。

<a href="#" 
    id="my-modal" 
    class="btn btn-success fcvt-btn-save" 
    nextModalId="fileFormatModal" 
    chain-modal> 
    Continue 
</a> 

next-modal-idへ:

変更nextModalId ...修正するには

<a href="#" 
    id="my-modal" 
    class="btn btn-success fcvt-btn-save" 
    next-modal-id="fileFormatModal" 
    chain-modal> 
    Continue 
</a> 

Updated JSFiddle

+0

もう一度ありがとう。私はそれが他のものすべてであるので、それがヘビケースでなければならないことを知っていたはずです。 –

0

問題はelem.bind機能ではないディレクティブです。私はこのようにコードを変更しました:

 var app = angular.module('AngAttrTest', []); 

     app.directive('chainModal', ['$document', function($document){ 

      return { 
       link: function(scope, elem, attrs) { 
        elem.bind('click', { id: attrs['id'], class: attrs['class'], nextModalId: attrs['nextModalId'] }, function(event) { 
         $('#appendMe').append("This works, ID: " + event.data.id + "<br/><br/>"); 
         $('#appendMe').append("So does this, Class: " + event.data.class + "<br/><br/>"); 
         $('#appendMe').append("But my custom Attribute nextModalId comes up undefined: " + event.data.nextModalId + "<br/><br/>"); 
        }); 
       } 
      } 
     }]);   
関連する問題