Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
滚动条看不到 div 的高度,因为滚动条更新在子元素渲染之前应用。我如何查看编译了哪些元素?
我用手表来查看对象何时添加到数组中。它工作正常,但 tinyscrollab_update 看到空 div,因为 ng-repeat 尚未编译。
$scope.$watch('comments', function(){ angular.element('#comment-list').tinyscrollbar_update('relative'); });
我把它写在指令中。
app.directive('commentsDirective', function(){ $scope.$watch('comments', function(){ angular.element('#comment-list').tinyscrollbar_update('relative'); }); })