0
我有這個指令來計算divs的高度。在編譯angularJS之後是否可以加載自定義指令?
// Directive to log a height. We have to add on some value to a final height, because css style will be undefined.
rootApp.directive('logHeightCategories', ['$timeout', function($timeout) {
return {
restrict: 'A',
link: function(scope, element) {
scope.prepMaxHeightCat = element.prop('offsetHeight');
scope.value = 0;
$timeout(function() {
scope.maxHeightCat = scope.value + scope.prepMaxHeightCat;
}, 0);
}
};
}]);
的CSS規則max-height: {{maxHeightCat}}px
被應用到該div動畫目的。然而,閃爍效應破壞了慾望目標。所以我已經爲該div添加了ng-cloak
到display:none
。
我認爲ng-cloak
被渲染爲最後,因此我認爲我的指令logHeightCategories
之前執行。所以我總是得到0px
的結果。
...即使我已經添加了一個$timeout
函數,希望我能克服執行時間,但我認爲情況並非如此。
我申請與範圍'prepMaxHeightCat'股利,因爲我看到你排除了數學,但無論如何,我得到了'0px'輸出。 –
我錯過了那條線。添加。不需要'$ .timeout',你可以在'attrs'上放置'scope。$ watch',當它改變完成時''compile'' scope'就是想法。 –
控制檯日誌中還有'ele未定義'的referenceError。我已經在angularjs文件中檢查了'ng-cloak'指令,它帶有'priority:-10'。我現在不知道,這裏的優先是否起到任何作用。 –