Restangular,用于单个请求的setResponseInterceptor

时间:2014-09-09 06:21:17

标签: angularjs restangular

我在AngularJS中使用Restangular,我们可以为单个请求设置responseInterceptor,而不是为所有请求设置响应吗?

1 个答案:

答案 0 :(得分:0)

你可以这样做;

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

BondRestangular.all('actions').getList();