문제

I have a problem when try to change 'model' in DWR call back.

function mainCtrl($scope) {
     $scope.mymodel = "x";  // this is ok
     DWRService.searchForSomething(function(result){
           $scope.mymodel = result; // PROBLEM!!! it does not rerender the new value
     }
     $scope.mymodel = "y";  // this is also ok.
}

Anyone has any ideas?

도움이 되었습니까?

해결책

I'm not super familiar with DWR, but my guess is that you need an $scope.$apply to enclose your model change. Like so:

function mainCtrl($scope) {
   $scope.mymodel = "x";  // this is ok
   DWRService.searchForSomething(function(result){
       $scope.$apply(function() {
            $scope.mymodel = result; // PROBLEM!!! it does not rerender the new value
       });
   });
   $scope.mymodel = "y";  // this is also ok.
}

다른 팁

just to clarify urban_racoons answer: DWR makes an Asynchronous call to the server. So the result is also received asynchronously.

Asynchronous change in model is not detected by AngularJs (reference here). To make the change effective you have to call $scope.apply() (as done by urban_racoons).

Another way to write above code is:

function mainCtrl($scope) {
     $scope.mymodel = "x";  // this is ok
     DWRService.searchForSomething(function(result){
           $scope.mymodel = result; // PROBLEM!!! it does not rerender the new value
           $scope.apply();
     }
     $scope.mymodel = "y";  // this is also ok.
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top