2014-09-09 1 views

답변

0

이렇게 할 수 있습니다.

var BondRestangular = Restangular.withConfig(function(RestangularConfigurer) { 
    RestangularConfigurer.setResponseInterceptor(function(data, operation, what) { 
    // do your thing 
    return data; 
)}; 
}); 

BondRestangular.all('actions').getList(); 
관련 문제