0
我使用Restangular使我的API調用單個對象,像這樣:後對象的數組與Restangular - AngularJS
$scope.box = { name : "box_a" , id : 1 };
Restangular.all('boxes/')
.post($scope.box)
.then(function(){
...
});
但現在,用戶可以選擇多個盒子可以一次添加。所以,我想發佈多個對象,以我的API,但我需要等待每個請求,直到它完成,或我的數據庫將「鎖定」 ......
我快速增加對象如下:
$scope.boxes = [
{ name : "box_a" , id : 1 },
{ name : "box_b" , id : 2 },
{ name : "box_c" , id : 3 }
]
如何通過循環訪問我的$scope.boxes
來創建承諾鏈?我不能完全弄清楚如何創建Restangular承諾的數組...
非常感謝!那正是我需要的...... – user1141796