<a>
現在、とのカスタム ディレクティブを作成しようとしてい<img>
ます。画像のsrcを取得するために見たいテストコードがあります。ただし、img タグのあるページに移動すると、以下のコードが起動しないようです。
理由はありますか?
'use strict';
(function() {
angular.directive('img', [function() {
return {
restrict: 'E',
scope: {
src: '='
},
link: function(scope, element, attrs) {
console.log(scope.src);
}
};
}]);
})();