在页面上
<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 并通过链接访问属性。我想知道是否有办法将指令的属性传递给模板。