RO Isis 서버에서 약간의 안락한 서비스를 사용하는 AngularJS의 클라이언트 웹 애플리케이션을 작성하는 중입니다. Spiro Angular 클라이언트를 사용하여보고 있었고 그 과정에서 Restangular 서비스를 발견했습니다. 순수한 AngularJS 또는 Restangular를 사용하는 것이 더 나은지에 대한 안내가 필요합니다. 실제 엔터프라이즈 응용 프로그램에서 EITHER를 사용하는 것에 대한 장단점.CRUD를 소모하기위한 순수한 angularjs 대 restraint 풍부한 리소스
NB : 나의 증명은 RO 서버에서 목록을 생성, 업데이트, 삭제 및 검색하는 것입니다. 나는 내 getList 위해 일하는 다음,하지만 전체 CRUD에게
sampleApp.controller('XXXController', function($scope, $http) {
//Outer Restful call
$http({ method:'GET',
url: 'http://localhost:8080/XXX-webapp-1.0-SNAPSHOT/restful/services/XXXXX/actions/listAll/invoke',
headers: {'Accept': 'application/json'}
}).
success(
function (data) {
var resultType = data.resulttype;
var objects = data.result.value;
$scope.rowList= [];
console.log(objects);
if(resultType == "list"){
for(i=0; i < objects.length; i++){
//Inner Restful call
$http({ method:'GET',url: objects[i].href,headers: {'Accept': 'application/json'}
}).
success(
function (rowdata) {
$scope.rowList.push(rowdata);
}
);
}
}
}
);
});
(POC 용)은 각형 $ http로 이동하지만 전문적인 응용 프로그램 용으로는 각형 –