具有REST后端的Angular中的非闪烁轮询

前端之家收集整理的这篇文章主要介绍了具有REST后端的Angular中的非闪烁轮询前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我设法获得后端功能的持续轮询使用
this answer.

但是在每次超时时,UI都会闪烁(短时间内为空模型).
如何在新数据到达后更新模型(和视图)
为了避免这种闪烁效应?

这是我目前的控制器(从step_11 (Angular.js Tutorial)略有修改):

function MyPollingCtrl($scope,$routeParams,$timeout,Model) {

(function tick() {
    $scope.line = Model.get({
        modelId : $routeParams.modelId
    },function(model) {
        $timeout(tick,2000);
    });
})();

}

//编辑:我正在使用当前稳定的Angular.js 1.0.6

尝试更新成功回调中的数据.像这样的东西:
(function tick() {
    Model.get({
        modelId : $routeParams.modelId
    },function(model) {
        $scope.line = model;    
        $timeout(tick,2000);
    });
})();

当模型resource正在获取数据时,这应该可以防止$scope.line为空时发生的闪烁.

原文链接:https://www.f2er.com/angularjs/140282.html

猜你在找的Angularjs相关文章