是否可以附加"自定义属性"从指令中的工厂方法返回的对象,而不需要从元素的属性中为范围属性赋值?
实施例
指令声明:
(...).directive('myDirective', function () {
return {
restrict: 'E',
scope: {
example: '@'
},
template: '<p>{{customProperty}}</p>' +
'<p>{{example}}</p>',
customProperty: 'Hello'; // is this possible ???
}
}
模板:
<div>
<my-directive example="Example variable value"></my-directive>
</div>