加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

angularjs – 承诺解决后,范围不会在视图中更新

发布时间:2020-12-17 07:37:08 所属栏目:安全 来源:网络整理
导读:即使这个 Data is not getting updated in the view after promise is resolved有一个类似的问题,但是我已经在使用这种方法,而且没有更新视图. 我有一个工厂: 'use strict';myApp.factory('Factory1',[ '$http','$q','$location','$rootScope','Service',fu
即使这个 Data is not getting updated in the view after promise is resolved有一个类似的问题,但是我已经在使用这种方法,而且没有更新视图.

我有一个工厂:

'use strict';

myApp
.factory('Factory1',[ '$http','$q','$location','$rootScope','Service',function($http,$q,$location,$rootScope,Service){

    return {

        checkSomething: function(data){

          var deferred = $q.defer();  //init promise

          Service.checkSomething(data,function(response){
                // This is a response from a get request from a service
                deferred.resolve(response);
          });

          return deferred.promise;
        }
    };
}]);

我有一个控制器:

'use strict';

myApp
.controller('MyCtrl',['$rootScope','$scope','Factory1' function($rootScope,$scope,Service,Factory1) {


    if(Service.someCheck() !== undefined)
    {
      // Setting the variable when view is loaded for the first time,but this shouldn't effect anything
      $scope.stringToDisplay = "Loaded";

    }


    $scope.clickMe = function(){
      Factory1.chechSomething($scope.inputData).then(function(response){
          $scope.stringToDisplay = response.someData; // The data here is actually being loaded!

      });
    };

}]);

和视图:

<div class="app " ng-controller="MyCtrl">    
    {{stringToDisplay}}    
    <button class="button" ng-click="clickMe()">Update display</button>    
</div>

但是当我点击“更新显示”按钮时,视图中的数据没有被更新.为什么?

即使$范围正在加载数据

编辑:

嗯,看来我在尝试$scope时收到一个错误$apply(),它说:

[$rootScope:inprog] $digest already in progress
这可能是一个摘要循环问题.你可以试试:
...
$scope.stringToDisplay = response.someData;
$scope.$apply();
...

为了完整起见,here是一个很好的总结$scope.$apply.

编辑:我试图在this fiddle重现错误,但似乎找不到任何问题.它没有$范围,无瑕疵工作.我使用setTimeout来模拟异步操作,它不应该自动触发摘要循环.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读