ここでは何もやっていないと思いますが、ディレクティブを添付した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/>");
});
}
それは本当に簡単でなければなりませんように。これは思えますしかし、私が間違ってやっていることが何であるか分かりません。ありがとう!
もう一度ありがとう。私はそれが他のものすべてであるので、それがヘビケースでなければならないことを知っていたはずです。 –