これが私のhtmlです:
<a href="#modal{{screencast.id}}" role="button" class=" btn" data-toggle="modal"
ng-click="fetch_comments(screencast.id)" ng-video url="match_url(screencast.video_url)">Play</a>
私の指示:
'use strict';
App.directive('ngVideo', [function () {
return {
restrict: 'A',
scope: { url: '='},
link: function (scope, elem, attrs) {
elem.bind('click', function () {
console.log(scope.url);
});
}
}
}]);
ページを更新すると、href="#modal{{screencast.id}}"
しかありませんhref="#modal"
。scope: { url: '='}
ディレクティブから削除すると正常に動作し、href
値はscreencast.id
. 私が間違っているのは何ですか?