6

我在stackoverflow上写过很多帖子,但我还没有找到答案。我有一个 jQuery 滚动条插件 (nanoscroll),我希望它在 ng-repeat 之后更新。正如这里的许多帖子所暗示的那样,我使用了这样的指令:

myApp.directive("postRender", function() {
    return function(scope, element, attrs) {
        jQuery('.nano').nanoScroller({preventPageScrolling: true});
    }
});

然后我有类似的东西:

<div class="nano"> <!-- my scrollable area -->
    <div ng-controller="MyController">
        <div ng-repeat="item in items" post-render>
        ...
        </div>
    </div>
    Some content here...
</div> <!-- my scrollable area -->

问题是(我不知道为什么),如果内容只是比可用大小大一点,.nano div那么滚动条就不会显示。

我相信 AngularJS 在尝试更新 nanoscroller 之前不会等待在控制器之后插入内容,并且该内容是在 posrt-render 指令之后添加的。顺便说一句,我怀疑这个问题来自 NanoScroller,因为当我按 F11 两次(全屏并返回正常模式)时,没有任何 DOM 修改,滚动条出现。

谢谢,希尔纽斯

_ _ _回答

最后我找到了解决方案。对于那些想知道的人,有必要使用 $timeout 服务。像那样 :

myApp.directive('postRender',['$timeout', function (timer) {
    return {
        link: function (scope, elem, attrs, ctrl) {
            timer(function () {
                    jQuery('.nano').nanoScroller({preventPageScrolling: true})
                 }
                 , 0);
        }
    }
}]);

尽管我找到了一个解决方案,但我仍然不知道存在的问题。我相信这是因为 angular 指令没有等待 DOM 被完全修改,也许有时间问题。

4

1 回答 1

0

OP找到了解决方案。

有必要使用$timeout 服务。像这样:

myApp.directive('postRender',['$timeout', function (timer) {
    return {
        link: function (scope, elem, attrs, ctrl) {
            timer(function () {
                    jQuery('.nano').nanoScroller({preventPageScrolling: true})    
                 }, 0);
        }
    }
}]);
于 2015-07-08T18:50:08.297 回答