3

我想知道如何从 linkFn 回调中手动获取属性。

例如,如果我想要范围,我愿意,

angular.element(element).scope()

控制器

angular.element(element).controller('ngModel')

attr 怎么样?

4

2 回答 2

3

在父控制器中,我想您可以在首先将属性对象分配给指令中的范围属性后访问它:

<div ng-controller="MyCtrl">
    <div my-directive attr1="one">see console log</div>
</div>
app.directive('myDirective', function() {
    return {
        link: function(scope, element, attrs) {
            scope.attrs = attrs
        },
    }
});

function MyCtrl($scope, $timeout) {
    $timeout(function() {
        console.log($scope.attrs);
    }, 1000);
}

fiddle

于 2013-05-22T17:16:41.557 回答
1

使用$compileand$rootScope服务的实例,调用$digest,然后访问attrand attributes

/* template string */
var html = "<div>ID: {{$id}}</div>";
/* template element creation */
var template = angular.element(html);
/* compile instance */
var compiler = angular.injector(["ng"]).get("$compile");
/* rootScope instance */ 
var scope = angular.injector(["ng"]).get("$rootScope");
/* template compilation */
var linker = compiler(template)(scope);
/* digest cycling */
scope.$digest();
/* scope linking */
var result = linker(scope)[0];
/* attr method */
linker.attr("class");
/* attribute property */
result.attributes;

参考

于 2014-12-22T00:49:47.487 回答