标签: javascript angularjs restangular angular-http-interceptors
我希望ng-repeat中的每个资源对象都有一个加载状态。 Restangulars addRequestInterceptor返回元素,但它似乎没有链接到角度$ scope。有没有办法从给出的参数中获取$ scope对象?
Restangular.addRequestInterceptor(function(element, operation, route, url){ if (element){ element.loading = true; } });