1

winjs promise の完了を待機していない for ループ

for (var j = 0; j < magazineResult[0].data.length; j++) {
        downRequest[0].data[j].COVER_PAGE_THUMB = parentUrl + eval(JSON.stringify(downRequest[0].data[j].COVER_PAGE_THUMB));

        // Create a new download operation.
        downloadFile(eval(magazineResult[0].data[j].COVER_PAGE_THUMB),eval(JSON.stringify(magazineResult[0].data[j].COVER_PAGE_THUMB)));
        var url = downRequest[0].data[j].COVER_PAGE_THUMB;
        var imgPath = downRequest[0].data[j].ISSUE_ID;
        var imgExtension = url.substring(url.lastIndexOf('.') + 1);
        var fileName = imgPath + "." + imgExtension;
        var promise = Windows.Storage.ApplicationData.current.localFolder.createFileAsync(fileName, Windows.Storage.CreationCollisionOption.replaceExisting);
        // Assign the completion handler function.
        promise.done(function (newFile) {
            MagazineDownLoad.downloadFile(url, fileName, j, newFile);
        });


    }
4

2 に答える 2

2

非同期で操作しようとしている場合はMagazineDownLoad.downloadFile、その定義を変更する必要があります。

// in MagazineDownload
function downloadFile(url, filename, j, newfile){
    return new WinJS.Promise(function (complete, error, progress) {
        var returnValue;
        //do the stuff that you do and assign something to returnValue
        complete(returnValue);
    });
}

次に、非同期で使用できます。

for (var j = 0; j < magazineResult[0].data.length; j++) {
    downRequest[0].data[j].COVER_PAGE_THUMB = parentUrl + eval(JSON.stringify(downRequest[0].data[j].COVER_PAGE_THUMB));

    // Create a new download operation.
    downloadFile(eval(magazineResult[0].data[j].COVER_PAGE_THUMB),eval(JSON.stringify(magazineResult[0].data[j].COVER_PAGE_THUMB)));
    var url = downRequest[0].data[j].COVER_PAGE_THUMB;
    var imgPath = downRequest[0].data[j].ISSUE_ID;
    var imgExtension = url.substring(url.lastIndexOf('.') + 1);
    var fileName = imgPath + "." + imgExtension;
    var promise = Windows.Storage.ApplicationData.current.localFolder.createFileAsync(fileName, Windows.Storage.CreationCollisionOption.replaceExisting);
    // Assign the completion handler function.
    promise.done(function (newFile) {
        MagazineDownLoad.downloadFile(url, fileName, j, newFile).done(function(result){
            //do some more stuff with the result
        });
    });
}
于 2013-03-23T15:59:22.387 に答える
1

WinJS.Promise()非同期で実行され、for ループは同期して実行されます。あなたが経験していることは期待されています。アクションをキューに入れたい場合は、ループを実行するのではなく、done()呼び出されたときに新しいアクションをキューに入れる必要があります。このようなもの:

var index = 0, data = magazineResult[0].data;
function queueDownload() {
    // Duplicate all needed logic here from your question
    var promise = Windows.Storage.ApplicationData.current.localFolder.createFileAsync(fileName, Windows.Storage.CreationCollisionOption.replaceExisting);
    // Assign the completion handler function.
    promise.done(function (newFile) {
        MagazineDownLoad.downloadFile(url, fileName, j, newFile);
        if (index < data.length) {
            queueDownload(++index);
        }
    });
}
queueDownload(index);
于 2013-03-23T14:49:31.360 に答える