我可以在Angular.js中使用DWR功能吗?

时间:2014-01-04 06:54:27

标签: angularjs dwr

我的团队成员熟悉java& DWR,我希望在前端使用angular.js。所以我的问题是两者是否会运作良好?感谢。

1 个答案:

答案 0 :(得分:0)

是的,他们可以工作。

查看所讨论的问题之一HERE

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.
}