1

Azure Cloud Storage にアップロードする必要がある一連の写真ファイルがあり、foreach ループを使用して以下のようにアップロードを呼び出します。

$scope.savetemplate = function () { 
     var imagePathsArray = [];

     $scope.filesimage = [];
     $scope.filesimage.push($scope.file1);
     $scope.filesimage.push($scope.file2);
     $scope.filesimage.push($scope.file3);


    for (var i in $scope.filesimage) {
        $scope.upload($scope.filesimage[i]);
    }


    $scope.data.Images = imagePathsArray ;

     $http({
              //after finish uploads i need to post the paths 
              //of all images to save into database
     })
 };


$scope.upload = function (file) {
  Upload.upload({
       url: '/uploadImage',
       data: { file: file }
    }).then(function (resp) {
       imagePathsArray.push(resp.data);

    })
};

resp.dataは Azureストレージ パスを返します。パスを imagePathsArray にプッシュする必要があります。

Angular Promise を使用して、すべてのファイルのアップロードが完了し、すべてのパスが imagePathsArray に保存されるのを待って、続行できるようにするにはどうすればよいですか?

 $scope.data.Images = imagePathsArray ;

配列内のパスを取得して $http 投稿を実行できるようにするには?

4

2 に答える 2

3

$q.allでそれを行うことができます。

var promises = [];
for (var i in $scope.filesimage) {
    promises.push(upload($scope.filesimage[i]));
}
$q.all(promises).then(function() {
    $scope.data.Images = imagePathsArray ;

    $http.post({
          //after finish uploads i need to post the paths 
          //of all images to save into database
    });
});

function upload(file) {
    return Upload.upload({
       url: '/uploadImage',
       data: { file: file }
    }).then(function (resp) {
       imagePathsArray.push(resp.data);
    })
};
于 2015-11-18T07:15:14.057 に答える
0

アップロード関数の成功コールバックで、パスをプッシュした後:

imagePathsArray.push(resp.data);
if(imagePathsArray.length == $scope.filesimage.length){
  pushtoDatabase();
}

インサイドpushtoDatabaseコール$http({ .... });

: アップロードが失敗する可能性を考慮することをお勧めします。その場合、失敗したファイルのカウンターを使用して回避できますfailCounter。次に、条件の if チェック内で

if ((imagePathsArray.length + failCounter) == $scope.filesimage.length){....}

于 2015-11-18T07:12:47.537 に答える