我在AngularJS中使用Restangular,我们可以为单个请求设置responseInterceptor,而不是为所有请求设置响应吗?
答案 0 :(得分:0)
你可以这样做;
var BondRestangular = Restangular.withConfig(function(RestangularConfigurer) {
RestangularConfigurer.setResponseInterceptor(function(data, operation, what) {
// do your thing
return data;
)};
});
BondRestangular.all('actions').getList();