ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

javascript – 如何使jQuery Deferred对象以另一个延迟的“已解决/已拒绝”状态解析/拒绝?

2019-07-03 17:21:42  阅读:246  来源: 互联网

标签:jquery javascript jquery-deferred deferred


我正在编写几个有效延迟对象的函数,这些函数依赖于其他延迟对象的不同组合.

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.
});

解决方法:

我认为你根本不需要构建新的承诺.回到第一个承诺.

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
}

标签:jquery,javascript,jquery-deferred,deferred
来源: https://codeday.me/bug/20190703/1368943.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有