ページ上
<rn-text-edit rn-scope="profile.first_name"></rn-text-edit>
jsで
app.directive("rnTextEdit", function () {
return {
restrict: 'E',
replace: true,
template:'<span>{{'+rn-scope+'}}</span>'
}
});
DOM を置き換えて、リンクを介して属性にアクセスできることはわかっています。ディレクティブの属性をテンプレートに渡す方法はあるのだろうか。