我的团队成员熟悉java
& DWR
,我希望在前端使用angular.js
。所以我的问题是两者是否会运作良好?感谢。
答案 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.
}