向指令声明返回的对象添加变量

时间:2015-01-29 15:25:21

标签: angularjs angularjs-directive

是否可以附加"自定义属性"从指令中的工厂方法返回的对象,而不需要从元素的属性中为范围属性赋值?

实施例

指令声明:

(...).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>

0 个答案:

没有答案