4

私は、他の遅延オブジェクトのさまざまな組み合わせに依存する事実上の遅延オブジェクトであるいくつかの関数を作成しています。

function takesOneSecond() {
    return $.Deferred(function(deferred) {
        // Does something...
    }).promise();
}

function takesOneMinute() {
    return $.Deferred(function(deferred) {
        // Does something...
    }).promise();
}

function takesThreeMinutes() {
    return $.Deferred(function(deferred) {
        // Does something...
    }).promise();
}

function mySwitchingFunction() {

    return $.Deferred(function(deferred) {

        // Does something here..
        // Effectively chooses one of several other functions to call.

        if(/* choose 1 second */) {

            // We tie ourselves to the '1 second' function.

            // Call that function.
            takesOneSecond().done(function() {

                deferred.resolve(); // If that's done, I'm done too.

            }).fail(function() {

                deferred.reject(); // If that failed, I've failed too.

            });

        } else if(/* choose 1 minute */) {

            // Etc..

        } else if(/* choose 3 minutes */) {

            // Etc..

        }

    }).promise();

}

私はこのコードのスニペットを何度も書いていますが、遅延ミラーまたはカスケードを別の遅延ミラーと同じ「解決済み」または「拒否」状態にする他の方法はありませんか?

takesOneSecond().done(function() {
    deferred.resolve(); // If that's done, I'm done too.
}).fail(function() {
    deferred.reject(); // If that failed, I've failed too.
});
4

2 に答える 2

1

新しい約束を構築する必要はまったくないと思います。最初の約束を返すだけです。

function mySecondFunction() {
    // Does something here..
    // Effectively chooses one of several other functions to call.
    // In this case, assume I've just chosen the 'myFirstFunction' function.

    // Call that function and return its promise
    return myFirstFunction();
}

「同時に」の部分を強調したいが、別の値で解決する可能性がある場合は、次のようにチェーンして新しい値を作成できます.then

function mySecondFunction() {
    return myFirstFunction().then(function(resultOfFirst) {
        // but ignore it and
        return differentResult;
    }); // errors will propagate automatically
}
于 2013-07-17T14:46:37.743 に答える