我有一个场景,一个指令的link
函数调用一个空的element
参数导致错误。
一个代码示例最好地描述了这个场景:
index . html:
<html ng-app="app">
<body>
<div outer></div>
</body>
</html>
脚本:
var app = angular.module('app', []);
app.directive('outer', function() {
return {
replace: true,
controller: function($scope) {
$scope.show = true;
},
templateUrl: 'partial.html'
};
});
app.directive('inner', function($window) {
return {
link: function(scope, element, attrs) {
console.log('element: ' + element);
var top = element[0].offsetTop;
}
};
});
partial.html(上面templateUrl
对outer
的引用):
<div ng-switch on="show">
<div ng-switch-when="true">
<div inner>showing it</div>
</div>
</div>
在Chrome中加载index.html,控制台报告错误:"TypeError: Cannot read property 'offsetTop' of undefined" -因为element
是一个空数组!
一些注意事项:
-
replace
必须在指令outer
上设置为true。 -
templateUrl
必须被指令outer
用来加载它的部分。
我不确定我是否忽略了一些配置要求,或者这是否是Angular的问题。这是一个有效的场景吗?如果是,那是ng-switch的问题,还是Angular内部有更深层次的问题?
Try
app.directive('inner', function($window) {
return {
link: function(scope, element, attrs) {
console.log('element: ', element);
if(!element.length){
console.log('Returning since there is no element');
return;
}
var top = element[0].offsetTop;
console.log('top', top)
}
};
});