3

我正在学习如何使用 jQuery 的deferred,我注意到使用$.whenwith的问题.notifyWith

我做了一个没有使用的例子$.when,并且.notifyWith效果很好

function a() {
    var d = new $.Deferred,
        $A = $('#A'),
        $P = $('#P').progressbar();

    setTimeout(function() {
        $A.css('background-color', 'blue');
        d.notifyWith($P, [.5]);
    }, 2000);

    setTimeout(function() {
        $A.text('test');
        d.notifyWith($P, [1]);
        d.resolveWith($P, ['done']);
    }, 4000);

    return d.promise();
}
$('#G').click(function() {
    a().progress(function(x) {
        this.progressbar({
            value: x * 100
        });
    }).done(function(x) {
        alert(x)
    });
});​

演示:http: //jsfiddle.net/NTICompass/3DDSa/3/

内部.progress,this设置为$P,因此进度条正确移动。

我想将这 2 个setTimeout动作拆分为单独的函数,所以我这样做了,并且习惯于$.when将这些承诺合并为一个:

(function() {
    var $P = $('#P').progressbar();
    window.a = function() {
        var d = new $.Deferred,
            $A = $('#A');

        setTimeout(function() {
            $A.css('background-color', 'blue');
            d.notifyWith($P, [.5]);
            d.resolve('a()');
        }, 2000);

        return d.promise();
    }

    window.b = function() {
        var d = new $.Deferred,
            $A = $('#A');

        setTimeout(function() {
            $A.text('test');
            d.notifyWith($P, [.5]);
            d.resolve('b()');
        }, 4000);

        return d.promise();
    }
}())

$('#G').click(function() {
    $.when(a(), b()).progress(function(x, y) {
        this.progressbar({
            value: ((x || 0) + (y || 0)) * 100
        });
    }).done(function(x, y) {
        alert(x + ' ' + y)
    });
});​

演示:http: //jsfiddle.net/NTICompass/3DDSa/16/

出于某种原因this里面.progress不是。相反,它是延迟对象(或承诺对象,我不太确定)。为什么不等于? $Pthis$P

4

2 回答 2

2

这已在 jQuery 1.8.0 中得到修复,其中this实际上是一个上下文数组。

$('#G').click(function() {
    var index = 0;
    $.when(a(), b()).progress(function(x, y) {
        this[index++].progressbar({
            value: ((x || 0) + (y || 0)) * 100
        });
    }).done(function(x, y) {
        alert(x + ' ' + y)
    });
});​

演示: http: //jsfiddle.net/3D4wq/1/(感谢来自 jQuery 错误跟踪器的jaubourg )

注意:(.progress.done)里面arguments.length的元素总是传递给的元素的数量$.when,所以this[arguments.length-1]不会(总是)起作用。

第一次.progress被称为arguments[.5, undefined]

于 2012-08-14T13:43:14.597 回答
2

我不确定是否有理由按原样编写它,但只需promise在第 1336 行更改以this使您的代码按预期运行。

http://jsfiddle.net/3DDSa/18/

$.when = function(firstParam) {
    var args = [].slice.call(arguments, 0),
        i = 0,
        length = args.length,
        pValues = new Array(length),
        count = length,
        pCount = length,
        deferred = length <= 1 && firstParam && jQuery.isFunction(firstParam.promise) ? firstParam : jQuery.Deferred(),
        promise = deferred.promise();

    function resolveFunc(i) {
        return function(value) {
            args[i] = arguments.length > 1 ? [].slice.call(arguments, 0) : value;
            if (!(--count)) {
                deferred.resolveWith(deferred, args);
            }
        };
    }

    function progressFunc(i) {
        return function(value) {
            pValues[i] = arguments.length > 1 ? [].slice.call(arguments, 0) : value;
            deferred.notifyWith(this, pValues); // this is line 1336
        };
    }
    if (length > 1) {
        for (; i < length; i++) {
            if (args[i] && args[i].promise && jQuery.isFunction(args[i].promise)) {
                args[i].promise().then(resolveFunc(i), deferred.reject, progressFunc(i));
            } else {
                --count;
            }
        }
        if (!count) {
            deferred.resolveWith(deferred, args);
        }
    } else if (deferred !== firstParam) {
        deferred.resolveWith(deferred, length ? [firstParam] : []);
    }
    return promise;
};​

可能值得添加到票中。

于 2012-08-10T19:58:30.383 回答