我想在 ng-repeat 中为每个资源对象设置一个加载状态。Restangulars addRequestInterceptor 返回元素,但它似乎没有链接到角度 $scope。有没有办法从给定的参数中获取 $scope 对象?
Restangular.addRequestInterceptor(function(element, operation, route, url){
if (element){
element.loading = true;
}
});