我想知道如何从 linkFn 回调中手动获取属性。
例如,如果我想要范围,我愿意,
angular.element(element).scope()
控制器
angular.element(element).controller('ngModel')
attr 怎么样?
我想知道如何从 linkFn 回调中手动获取属性。
例如,如果我想要范围,我愿意,
angular.element(element).scope()
控制器
angular.element(element).controller('ngModel')
attr 怎么样?
在父控制器中,我想您可以在首先将属性对象分配给指令中的范围属性后访问它:
<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);
}
使用$compile
and$rootScope
服务的实例,调用$digest
,然后访问attr
and 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;
参考